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 64 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
68 int32_t nextS() { return (int32_t)this->nextU(); }
  /external/skia/include/utils/
SkRandom.h 37 uint32_t nextU() {
45 int32_t nextS() { return (int32_t)this->nextU(); }
49 U16CPU nextU16() { return this->nextU() >> 16; }
59 unsigned int floatint = 0x3f800000 | (this->nextU() >> 9);
77 return this->nextU() >> (32 - bitCount);
87 return this->nextU();
89 return min + this->nextU() % range;
120 bool nextBool() { return this->nextU() >= 0x80000000; }
134 return (hi << 32) | this->nextU();
161 SkFixed nextUFixed1() { return this->nextU() >> 16;
    [all...]

Completed in 1365 milliseconds