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

/external/skia/include/utils/
H A DSkRandom.h36 uint32_t nextU() { function in class:SkRandom
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...]
/external/skia/src/effects/
H A DSkDiscretePathEffect.cpp53 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; } function in class:LCGRandom
57 int32_t nextS() { return (int32_t)this->nextU(); }
/external/skia/fuzz/
H A Dfuzz.cpp398 uint32_t Fuzz::nextU() { return this->nextT<uint32_t>(); } function in class:Fuzz
409 return this->nextU();
411 return min + this->nextU() % range;

Completed in 3408 milliseconds