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

  /external/skia/legacy/include/core/
SkRandom.h 33 int32_t nextS() { return (int32_t)this->nextU(); }
41 S16CPU nextS16() { return this->nextS() >> 16; }
68 SkFixed nextSFixed1() { return this->nextS() >> 15; }
84 a->set(this->nextS(), this->nextU());
  /external/skia/include/utils/
SkRandom.h 33 int32_t nextS() { return (int32_t)this->nextU(); }
41 S16CPU nextS16() { return this->nextS() >> 16; }
96 SkFixed nextSFixed1() { return this->nextS() >> 15; }
130 a->set(this->nextS(), this->nextU());
185 int32_t nextS() { return (int32_t)this->nextU(); }
193 S16CPU nextS16() { return this->nextS() >> 16; }
249 SkFixed nextSFixed1() { return this->nextS() >> 15; }
283 a->set(this->nextS(), this->nextU());
  /external/skia/tests/
Sk64Test.cpp 83 int aa = rand.nextS() >> 1;
84 int bb = rand.nextS() >> 1;
157 int32_t denom = rand.nextS();
160 denom = rand.nextS();
161 wide.setMul(rand.nextS(), rand.nextS());
170 wide.setMul(rand.nextS(), rand.nextS());
177 wide.setMul(rand.nextS(), rand.nextS());
    [all...]
ClampRangeTest.cpp 114 SkFixed fx = rand.nextS() >> 1;
115 SkFixed sx = rand.nextS() >> 1;
123 SkFixed fx = rand.nextS();
124 SkFixed dx = rand.nextS();
InfRectTest.cpp 42 r.set(rand.nextS() >> 2, rand.nextS() >> 2,
43 rand.nextS() >> 2, rand.nextS() >> 2);
RTreeTest.cpp 29 rect.fLeft = rand.nextS() % 1000;
30 rect.fRight = rand.nextS() % 1000;
31 rect.fTop = rand.nextS() % 1000;
32 rect.fBottom = rand.nextS() % 1000;
SortTest.cpp 20 array[j] = rand.nextS() & 0xFF;
MathTest.cpp 373 int ix = rand.nextS();
459 p.setLength((SkScalar) rand.nextS(),
460 (SkScalar) rand.nextS(),
463 p.setLength((SkScalar) (rand.nextS() >> 13),
464 (SkScalar) (rand.nextS() >> 13),
481 SkFixed numer = rand.nextS();
482 SkFixed denom = rand.nextS();
572 SkFixed rads = rand.nextS() >> 10;
UtilsTest.cpp 60 array[i] = rand.nextS();
78 int value = rand.nextS();
AAClipTest.cpp 91 int x = rand.nextS() % n;
92 int y = rand.nextS() % n;
  /external/skia/bench/
MatrixBench.cpp 226 fArray[0] = (float) fRnd.nextS();
227 fArray[1] = (float) fRnd.nextS();
228 fArray[2] = (float) fRnd.nextS();
229 fArray[3] = (float) fRnd.nextS();
230 fArray[4] = (float) fRnd.nextS();
231 fArray[5] = (float) fRnd.nextS();
232 fArray[6] = (float) fRnd.nextS();
233 fArray[7] = (float) fRnd.nextS();
234 fArray[8] = (float) fRnd.nextS();
RTreeBench.cpp 174 out.fLeft = rand.nextS() % GENERATE_EXTENTS;
175 out.fTop = rand.nextS() % GENERATE_EXTENTS;
SortBench.cpp 26 array[i] = rand.nextS();
  /external/skia/legacy/src/core/
SkFloat.cpp 303 int aa = rand.nextS() >> 14;
304 int bb = rand.nextS() >> 14;
327 aa = rand.nextS() >> 11;
332 bb = rand.nextS() >> 11;
  /external/skia/src/core/
SkFloat.cpp 300 int aa = rand.nextS() >> 14;
301 int bb = rand.nextS() >> 14;
324 aa = rand.nextS() >> 11;
329 bb = rand.nextS() >> 11;

Completed in 1087 milliseconds