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 380 unsigned BitsLeft = NumBits-BitsInCurWord;
382 // Be careful here, BitsLeft is in the range [1..32]/[1..64] inclusive.
383 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft)))
386 // BitsLeft bits have just been used up from CurWord. BitsLeft is in the
388 if (BitsLeft != sizeof(word_t)*8)
389 CurWord >>= BitsLeft;
392 BitsInCurWord = sizeof(word_t)*8-BitsLeft;
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 351 unsigned BitsLeft = 64-AsmStrBits;
370 if (NumBits > BitsLeft) {
379 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft);
381 BitsLeft -= NumBits;
411 if (BitsLeft < 32) {
415 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8")
434 if (BitsLeft < 32) {
448 BitsLeft = 64-AsmStrBits;
455 assert(NumBits <= BitsLeft && "consistency error")
    [all...]

Completed in 227 milliseconds