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

  /external/skia/gpu/include/
GrRandom.h 28 uint32_t nextU() {
33 int32_t nextS() { return (int32_t)this->nextU(); }
40 return (float)(this->nextU() * 2.32830644e-10);
  /external/skia/include/core/
SkRandom.h 36 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
40 int32_t nextS() { return (int32_t)this->nextU(); }
44 U16CPU nextU16() { return this->nextU() >> 16; }
56 return this->nextU() >> (32 - bitCount);
64 return min + this->nextU() % (max - min + 1);
70 SkFixed nextUFixed1() { return this->nextU() >> 16; }
91 a->set(this->nextS(), this->nextU());

Completed in 452 milliseconds