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

  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 382 unsigned BitsLeft = NumBits-BitsInCurWord;
384 // Be careful here, BitsLeft is in the range [1..32]/[1..64] inclusive.
385 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft)))
388 // BitsLeft bits have just been used up from CurWord. BitsLeft is in the
390 if (BitsLeft != sizeof(word_t)*8)
391 CurWord >>= BitsLeft;
394 BitsInCurWord = sizeof(word_t)*8-BitsLeft;
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 367 unsigned BitsLeft = 64-AsmStrBits;
386 if (NumBits > BitsLeft) {
395 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft);
397 BitsLeft -= NumBits;
427 if (BitsLeft < 32) {
431 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8")
450 if (BitsLeft < 32) {
464 BitsLeft = 64-AsmStrBits;
471 assert(NumBits <= BitsLeft && "consistency error")
    [all...]

Completed in 3309 milliseconds