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

  /external/chromium_org/third_party/skia/include/utils/
SkRandom.h 26 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
30 int32_t nextS() { return (int32_t)this->nextU(); }
34 U16CPU nextU16() { return this->nextU() >> 16; }
45 return (float)(this->nextU() * 2.32830644e-10);
61 return this->nextU() >> (32 - bitCount);
71 return this->nextU();
73 return min + this->nextU() % range;
88 SkFixed nextUFixed1() { return this->nextU() >> 16; }
114 bool nextBool() { return this->nextU() >= 0x80000000; }
128 return (hi << 32) | this->nextU();
    [all...]
  /external/skia/include/utils/
SkRandom.h 26 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
30 int32_t nextS() { return (int32_t)this->nextU(); }
34 U16CPU nextU16() { return this->nextU() >> 16; }
45 return (float)(this->nextU() * 2.32830644e-10);
61 return this->nextU() >> (32 - bitCount);
71 return this->nextU();
73 return min + this->nextU() % range;
88 SkFixed nextUFixed1() { return this->nextU() >> 16; }
114 bool nextBool() { return this->nextU() >= 0x80000000; }
128 return (hi << 32) | this->nextU();
    [all...]

Completed in 252 milliseconds