Home | History | Annotate | Download | only in utils

Lines Matching defs:nextU

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; }