Searched defs:CurWord (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h173 /// CurWord/word_t - This is the current data we have pulled from the stream
179 word_t CurWord; member in class:llvm::BitstreamCursor
181 /// BitsInCurWord - This is the number of bits in CurWord that are valid. This
211 CurWord = 0;
221 CurWord = 0;
332 CurWord = 0;
348 // If the field is fully contained by CurWord, return it quickly.
350 uint32_t R = uint32_t(CurWord) & (~0U >> (32-NumBits));
351 CurWord >>= NumBits;
358 CurWord
[all...]

Completed in 411 milliseconds