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

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Bitcode/
BitstreamReader.h 202 unsigned BitsLeft = NumBits - BitsInCurWord;
207 if (BitsLeft > BitsInCurWord)
210 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
213 CurWord >>= (BitsLeft & Mask);
215 BitsInCurWord -= BitsLeft;
217 R |= R2 << (NumBits - BitsLeft);
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 282 unsigned BitsLeft = NumBits - BitsInCurWord;
287 if (BitsLeft > BitsInCurWord)
290 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
293 CurWord >>= (BitsLeft & Mask);
295 BitsInCurWord -= BitsLeft;
297 R |= R2 << (NumBits - BitsLeft);
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 316 unsigned BitsLeft = OpcodeInfoBits-AsmStrBits;
335 if (NumBits > BitsLeft) {
346 (uint64_t)i << (OpcodeInfoBits-BitsLeft);
357 BitsLeft -= NumBits;
369 unsigned BytesNeeded = ((OpcodeInfoBits - BitsLeft) + 7) / 8;
374 BitsOS << " uint" << ((BitsLeft < (OpcodeInfoBits - 32)) ? 64 : 32)
392 if (BitsLeft < (OpcodeInfoBits - 32))
411 BitsLeft = OpcodeInfoBits-AsmStrBits;
418 assert(NumBits <= BitsLeft && "consistency error");
427 << (OpcodeInfoBits-BitsLeft) << ") &
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
AsmWriterEmitter.cpp 334 unsigned BitsLeft = OpcodeInfoBits-AsmStrBits;
353 if (NumBits > BitsLeft) {
364 (uint64_t)i << (OpcodeInfoBits-BitsLeft);
375 BitsLeft -= NumBits;
387 unsigned BytesNeeded = ((OpcodeInfoBits - BitsLeft) + 7) / 8;
392 BitsOS << " uint" << ((BitsLeft < (OpcodeInfoBits - 32)) ? 64 : 32)
410 if (BitsLeft < (OpcodeInfoBits - 32))
429 BitsLeft = OpcodeInfoBits-AsmStrBits;
436 assert(NumBits <= BitsLeft && "consistency error");
445 << (OpcodeInfoBits-BitsLeft) << ") &
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h 289 unsigned BitsLeft = NumBits-BitsInCurWord;
291 // Be careful here, BitsLeft is in the range [1..32] inclusive.
292 R |= (CurWord & (~0U >> (32-BitsLeft))) << BitsInCurWord;
294 // BitsLeft bits have just been used up from CurWord.
295 if (BitsLeft != 32)
296 CurWord >>= BitsLeft;
299 BitsInCurWord = 32-BitsLeft;
  /external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
NaClBitstreamReader.h 701 unsigned BitsLeft = NumBits - BitsInCurWord;
706 if (BitsLeft > BitsInCurWord)
709 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft));
712 CurWord >>= (BitsLeft & Mask);
714 BitsInCurWord -= BitsLeft;
716 R |= R2 << (NumBits - BitsLeft);
  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmWriterEmitter.cpp 317 unsigned BitsLeft = 32-AsmStrBits;
336 if (NumBits > BitsLeft) {
343 BitsLeft -= NumBits;
346 OpcodeInfo[i] |= InstIdxs[i] << (BitsLeft+AsmStrBits);
388 BitsLeft = 32-AsmStrBits;
395 assert(NumBits <= BitsLeft && "consistency error");
398 BitsLeft -= NumBits;
405 O << " if ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
415 O << " switch ((Bits >> " << (BitsLeft+AsmStrBits) << ") & "
    [all...]

Completed in 401 milliseconds