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

  /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());
  /external/skia/tests/
StreamTest.cpp 11 *p++ = (char)(rand.nextU() >> 8);
24 int size = rand.nextU() % MAX_SIZE;
29 int bufferSize = 1 + (rand.nextU() & 0xFFFF);
35 int s = 17 + (rand.nextU() & 0xFFFF);
60 copyPtr += buff.read(copyPtr, rand.nextU() & 15);
PackBitsTest.cpp 13 buffer[i] = (uint16_t)gRand.nextU();
63 buffer[i] = (uint8_t)((gRand.nextU() >> 8) & 0x3);
108 size_t skip = gRand.nextU() % size;
109 size_t write = gRand.nextU() % size;
MathTest.cpp 44 data.fSignBitInt = rand.nextU();
141 int ival = rand.nextU() & 0xFFFFFF;
366 SkFract x = rand.nextU() >> 1;
Sk64Test.cpp 127 int bits = rand.nextU() & 63;
  /external/skia/bench/
RectBench.cpp 21 int x = rand.nextU() % W;
22 int y = rand.nextU() % H;
23 int w = rand.nextU() % W;
24 int h = rand.nextU() % H;
31 fColors[i] = rand.nextU() | 0xFF808080;
  /external/skia/src/core/
SkGraphics.cpp 283 uint32_t a = rand.nextU();

Completed in 69 milliseconds