HomeSort by relevance Sort by last modified time
    Searched refs:CurWord (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 174 /// CurWord/word_t - This is the current data we have pulled from the stream
180 word_t CurWord;
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 = 0
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 23 CurWord = RHS.CurWord;

Completed in 54 milliseconds