Home
last modified time | relevance | path

Searched refs:BitsLeft (Results 1 – 2 of 2) sorted by relevance

/minix/external/bsd/llvm/dist/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h359 unsigned BitsLeft = NumBits - BitsInCurWord; in Read() local
364 if (BitsLeft > BitsInCurWord) in Read()
367 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft)); in Read()
370 CurWord >>= (BitsLeft & Mask); in Read()
372 BitsInCurWord -= BitsLeft; in Read()
374 R |= R2 << (NumBits - BitsLeft); in Read()
/minix/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DAsmWriterEmitter.cpp344 unsigned BitsLeft = 64-AsmStrBits; in EmitPrintInstruction() local
363 if (NumBits > BitsLeft) { in EmitPrintInstruction()
374 BitsLeft -= NumBits; in EmitPrintInstruction()
404 if (BitsLeft < 32) { in EmitPrintInstruction()
408 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8") in EmitPrintInstruction()
427 if (BitsLeft < 32) { in EmitPrintInstruction()
441 BitsLeft = 64-AsmStrBits; in EmitPrintInstruction()
448 assert(NumBits <= BitsLeft && "consistency error"); in EmitPrintInstruction()
457 << (64-BitsLeft) << ") & " in EmitPrintInstruction()
468 << (64-BitsLeft) << ") & " in EmitPrintInstruction()
[all …]