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

  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h 127 /// CurWord - This is the current data we have pulled from the stream but have
129 uint32_t CurWord;
131 /// BitsInCurWord - This is the number of bits in CurWord that are valid. This
161 CurWord = 0;
172 CurWord = 0;
186 CurWord = RHS.CurWord;
256 CurWord = 0;
266 // If the field is fully contained by CurWord, return it quickly.
268 uint32_t R = CurWord & ((1U << NumBits)-1)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
BitstreamReader.h 94 word_t CurWord = 0;
96 /// This is the number of bits in CurWord that are valid. This is always from
168 CurWord =
174 CurWord = 0;
176 CurWord |= uint64_t(NextCharPtr[B]) << (B * 8);
190 // If the field is fully contained by CurWord, return it quickly.
192 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits));
195 CurWord >>= (NumBits & Mask);
201 word_t R = BitsInCurWord ? CurWord : 0;
210 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft))
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 151 word_t CurWord = 0;
153 /// This is the number of bits in CurWord that are valid. This is always from
249 CurWord = 0;
255 CurWord =
270 // If the field is fully contained by CurWord, return it quickly.
272 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits));
275 CurWord >>= (NumBits & Mask);
281 word_t R = BitsInCurWord ? CurWord : 0;
290 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
293 CurWord >>= (BitsLeft & Mask)
    [all...]
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitstreamReader.h 413 word_t CurWord;
415 /// This is the number of bits in CurWord that are valid. This
674 CurWord =
689 // If the field is fully contained by CurWord, return it quickly.
691 word_t R = CurWord & (~word_t(0) >> (BitsInWord - NumBits));
694 CurWord >>= (NumBits & Mask);
700 word_t R = BitsInCurWord ? CurWord : 0;
709 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
712 CurWord >>= (BitsLeft & Mask);
763 CurWord >>= BitsToSkip
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsISelLowering.cpp     [all...]

Completed in 3060 milliseconds