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

  /external/skia/src/gpu/
GrRandom.h 21 uint32_t nextU() {
26 int32_t nextS() { return (int32_t)this->nextU(); }
33 return (float)(this->nextU() * 2.32830644e-10);
  /external/skia/include/core/
SkRandom.h 29 uint32_t nextU() { uint32_t r = fSeed * kMul + kAdd; fSeed = r; return r; }
33 int32_t nextS() { return (int32_t)this->nextU(); }
37 U16CPU nextU16() { return this->nextU() >> 16; }
49 return this->nextU() >> (32 - bitCount);
57 return min + this->nextU() % (max - min + 1);
63 SkFixed nextUFixed1() { return this->nextU() >> 16; }
84 a->set(this->nextS(), this->nextU());

Completed in 72 milliseconds