Home | History | Annotate | Download | only in utils

Lines Matching refs:bitCount

59         at most bitCount bits.
60 @param bitCount The maximum number of bits to be returned
62 uint32_t nextBits(unsigned bitCount) {
63 SkASSERT(bitCount > 0 && bitCount <= 32);
64 return this->nextU() >> (32 - bitCount);
212 at most bitCount bits.
213 @param bitCount The maximum number of bits to be returned
215 uint32_t nextBits(unsigned bitCount) {
216 SkASSERT(bitCount > 0 && bitCount <= 32);
217 return this->nextU() >> (32 - bitCount);