Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h97 unsigned BitsInCurWord = 0; variable
114 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()
119 return uint64_t(NextChar)*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
135 BitsInCurWord = 0; in JumpToBit()
182 BitsInCurWord = BytesRead * 8; in fillCurWord()
195 if (BitsInCurWord >= NumBits) { in Read()
201 BitsInCurWord -= NumBits; in Read()
205 word_t R = BitsInCurWord ? CurWord : 0; in Read()
206 unsigned BitsLeft = NumBits - BitsInCurWord; in Read()
212 if (BitsLeft > BitsInCurWord) in Read()
[all …]