Home
last modified time | relevance | path

Searched refs:BitsInCurWord (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h96 unsigned BitsInCurWord = 0; variable
134 BitsInCurWord = 0; in JumpToBit()
182 BitsInCurWord = BytesRead * 8; in fillCurWord()
195 if (BitsInCurWord >= NumBits) { in Read()
201 BitsInCurWord -= NumBits; in Read()
212 if (BitsLeft > BitsInCurWord) in Read()
222 BitsInCurWord -= BitsLeft; in Read()
300 BitsInCurWord >= 32) { in SkipToFourByteBoundary()
301 CurWord >>= BitsInCurWord-32; in SkipToFourByteBoundary()
302 BitsInCurWord = 32; in SkipToFourByteBoundary()
[all …]