HomeSort by relevance Sort by last modified time
    Searched defs:fLo (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/include/core/
Sk64.h 21 uint32_t fLo; //!< the low 32 bits of the number
25 SkBool is32() const { return fHi == ((int32_t)fLo >> 31); }
29 SkBool is64() const { return fHi != ((int32_t)fLo >> 31); }
38 int32_t get32() const { SkASSERT(this->is32()); return (int32_t)fLo; }
45 uint32_t sum = fLo + (1 << 15);
47 if (sum < fLo) {
67 SkBool isZero() const { return (fHi | fLo) == 0; }
70 SkBool nonZero() const { return fHi | fLo; }
76 SkBool isPos() const { return ~(fHi >> 31) & (fHi | fLo); }
79 int getSign() const { return (fHi >> 31) | Sk32ToBool(fHi | fLo); }
    [all...]
  /external/skia/include/core/
Sk64.h 21 uint32_t fLo; //!< the low 32 bits of the number
25 SkBool is32() const { return fHi == ((int32_t)fLo >> 31); }
29 SkBool is64() const { return fHi != ((int32_t)fLo >> 31); }
38 int32_t get32() const { SkASSERT(this->is32()); return (int32_t)fLo; }
45 uint32_t sum = fLo + (1 << 15);
47 if (sum < fLo) {
67 SkBool isZero() const { return (fHi | fLo) == 0; }
70 SkBool nonZero() const { return fHi | fLo; }
76 SkBool isPos() const { return ~(fHi >> 31) & (fHi | fLo); }
79 int getSign() const { return (fHi >> 31) | Sk32ToBool(fHi | fLo); }
    [all...]

Completed in 85 milliseconds