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

  /external/skia/src/effects/
SkDiscretePathEffect.cpp 52 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
56 int32_t nextS() { return (int32_t)this->nextU(); }
  /external/skia/include/utils/
SkRandom.h 36 uint32_t nextU() {
44 int32_t nextS() { return (int32_t)this->nextU(); }
48 U16CPU nextU16() { return this->nextU() >> 16; }
58 unsigned int floatint = 0x3f800000 | (this->nextU() >> 9);
76 return this->nextU() >> (32 - bitCount);
86 return this->nextU();
88 return min + this->nextU() % range;
103 SkFixed nextUFixed1() { return this->nextU() >> 16; }
129 bool nextBool() { return this->nextU() >= 0x80000000; }
143 return (hi << 32) | this->nextU();
    [all...]

Completed in 61 milliseconds