Searched defs:fLo (Results 1 - 1 of 1) sorted by relevance

/external/skia/include/core/
H A DSk64.h29 uint32_t fLo; //!< the low 32 bits of the number member in struct:Sk64
33 SkBool is32() const { return fHi == ((int32_t)fLo >> 31); }
37 SkBool is64() const { return fHi != ((int32_t)fLo >> 31); }
46 int32_t get32() const { SkASSERT(this->is32()); return (int32_t)fLo; }
53 uint32_t sum = fLo + (1 << 15);
55 if (sum < fLo) {
75 SkBool isZero() const { return (fHi | fLo) == 0; }
78 SkBool nonZero() const { return fHi | fLo; }
84 SkBool isPos() const { return ~(fHi >> 31) & (fHi | fLo); }
87 int getSign() const { return (fHi >> 31) | Sk32ToBool(fHi | fLo); }
[all...]

Completed in 130 milliseconds