Lines Matching refs:startBit
766 int startBit, // The bit from which we're going to do the reading in decode_integer_sequence() argument
782 startBit = 128 - startBit; in decode_integer_sequence()
791 int endBlockBit = startBit + 8 + 5*nBits; in decode_integer_sequence()
798 decode_trit_block(trits, nBits, read_astc_bits(src, startBit, endBlockBit)); in decode_integer_sequence()
803 startBit = endBlockBit; in decode_integer_sequence()
808 int endBlockBit = startBit + 7 + 3*nBits; in decode_integer_sequence()
815 decode_quint_block(quints, nBits, read_astc_bits(src, startBit, endBlockBit)); in decode_integer_sequence()
820 startBit = endBlockBit; in decode_integer_sequence()
824 int endValBit = startBit + nBits; in decode_integer_sequence()
829 SkASSERT(endValBit - startBit < 31); in decode_integer_sequence()
830 *dst = static_cast<int>(read_astc_bits(src, startBit, endValBit)); in decode_integer_sequence()
833 startBit = endValBit; in decode_integer_sequence()