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

  /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...]
  /external/skia/src/core/
Sk64.cpp 27 uint32_t lo = fLo;
46 fHi = fLo << (bits - 32);
47 fLo = 0;
51 fHi = (fHi << bits) | (fLo >> (32 - bits));
52 fLo <<= bits;
61 return fLo;
71 return (fHi << (32 - bits)) | (fLo >> bits);
83 fLo = fHi >> (bits - 32);
88 fLo = (fHi << (32 - bits)) | (fLo >> bits)
    [all...]
SkMath.cpp 134 return tmp.fLo;
SkMatrix.cpp 782 denom = (int32_t)tmp1.fLo << (s - 33);
    [all...]
  /external/skia/tests/
Sk64Test.cpp 30 return ((SkLONGLONG)a.fHi << 32) | a.fLo;
48 a.fHi = a.fLo = 0;
55 a.fHi = 0; a.fLo = 5;
61 a.fHi = -1; a.fLo = (uint32_t)-5;
106 a.fLo = 0;
107 b.fLo = 0;
BitmapCopyTest.cpp 381 safeSize.fLo != 0x4DF82000)
388 safeSize.fLo != 0x6FC10000)
395 safeSize.fLo != 0xDF820000)
401 safeSize.fLo != 0xBF040000)
  /external/skia/src/utils/
SkSfntUtils.cpp 26 value.fLo = (p[4] << 24) | (p[5] << 16) | (p[6] << 8) | p[7];

Completed in 573 milliseconds