Lines Matching refs:bit_pos_
46 uint32_t bit_pos_; /* current bit-reading position in val_ */ member
53 uint32_t bit_pos_; member
71 to->bit_pos_ = from->bit_pos_; in BrotliBitReaderSaveState()
79 to->bit_pos_ = from->bit_pos_; in BrotliBitReaderRestoreState()
86 return (BROTLI_64_BITS ? 64 : 32) - br->bit_pos_; in BrotliGetAvailableBits()
110 if (br->bit_pos_ >= 56) { in BrotliFillBitWindow()
112 br->bit_pos_ ^= 56; /* here same as -= 56 because of the if condition */ in BrotliFillBitWindow()
119 if (br->bit_pos_ >= 48) { in BrotliFillBitWindow()
121 br->bit_pos_ ^= 48; /* here same as -= 48 because of the if condition */ in BrotliFillBitWindow()
127 if (br->bit_pos_ >= 32) { in BrotliFillBitWindow()
129 br->bit_pos_ ^= 32; /* here same as -= 32 because of the if condition */ in BrotliFillBitWindow()
137 if (br->bit_pos_ >= 24) { in BrotliFillBitWindow()
139 br->bit_pos_ ^= 24; /* here same as -= 24 because of the if condition */ in BrotliFillBitWindow()
145 if (br->bit_pos_ >= 16) { in BrotliFillBitWindow()
147 br->bit_pos_ ^= 16; /* here same as -= 16 because of the if condition */ in BrotliFillBitWindow()
174 br->bit_pos_ -= 8; in BrotliPullByte()
184 return br->val_ >> br->bit_pos_; in BrotliGetBitsUnmasked()
219 br->bit_pos_ += n_bits; in BrotliDropBits()
232 br->bit_pos_ += unused_bits; in BrotliBitReaderUnload()
241 (int)br->avail_in, (int)br->bit_pos_, (int)n_bits, (int)*val)); in BrotliTakeBits()