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

/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h174 /// CurWord/word_t - This is the current data we have pulled from the stream
180 word_t CurWord; member in class:llvm::BitstreamCursor
182 /// BitsInCurWord - This is the number of bits in CurWord that are valid. This
212 CurWord = 0;
222 CurWord = 0;
333 CurWord = 0;
349 // If the field is fully contained by CurWord, return it quickly.
351 uint32_t R = uint32_t(CurWord) & (~0U >> (32-NumBits));
352 CurWord >>= NumBits;
359 CurWord
[all...]

Completed in 77 milliseconds