#include <Int96.h>
Definition at line 10 of file Int96.h.
◆ Make() [1/2]
Int96 bentleyottmann::Int96::Make |
( |
int32_t |
a | ) |
|
|
static |
Definition at line 11 of file Int96.cpp.
11 {
12 return {
a >= 0 ? 0 : -1, (uint32_t)
a};
13}
◆ Make() [2/2]
Int96 bentleyottmann::Int96::Make |
( |
int64_t |
a | ) |
|
|
static |
Definition at line 15 of file Int96.cpp.
15 {
16 return {
a >> 32, (uint32_t)(
a & 0xFFFFFFFF)};
17}
◆ hi
int64_t bentleyottmann::Int96::hi |
◆ lo
uint32_t bentleyottmann::Int96::lo |
The documentation for this struct was generated from the following files:
- third_party/skia/modules/bentleyottmann/include/Int96.h
- third_party/skia/modules/bentleyottmann/src/Int96.cpp