Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h98 unsigned BitsInCurWord = 0; variable
117 return BitsInCurWord == 0 && BitcodeBytes.size() <= NextChar; in AtEndOfStream()
122 return NextChar*CHAR_BIT - BitsInCurWord; in GetCurrentBitNo()
138 BitsInCurWord = 0; in JumpToBit()
186 BitsInCurWord = BytesRead * 8; in fillCurWord()
199 if (BitsInCurWord >= NumBits) { in Read()
205 BitsInCurWord -= NumBits; in Read()
209 word_t R = BitsInCurWord ? CurWord : 0; in Read()
210 unsigned BitsLeft = NumBits - BitsInCurWord; in Read()
216 if (BitsLeft > BitsInCurWord) in Read()
[all …]