Searched refs:BitsLeft (Results 1 – 2 of 2) sorted by relevance
361 unsigned BitsLeft = NumBits - BitsInCurWord; in Read() local366 if (BitsLeft > BitsInCurWord) in Read()369 word_t R2 = CurWord & (~word_t(0) >> (BitsInWord - BitsLeft)); in Read()372 CurWord >>= (BitsLeft & Mask); in Read()374 BitsInCurWord -= BitsLeft; in Read()376 R |= R2 << (NumBits - BitsLeft); in Read()
347 unsigned BitsLeft = 64-AsmStrBits; in EmitPrintInstruction() local366 if (NumBits > BitsLeft) { in EmitPrintInstruction()375 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft); in EmitPrintInstruction()377 BitsLeft -= NumBits; in EmitPrintInstruction()407 if (BitsLeft < 32) { in EmitPrintInstruction()411 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8") in EmitPrintInstruction()430 if (BitsLeft < 32) { in EmitPrintInstruction()444 BitsLeft = 64-AsmStrBits; in EmitPrintInstruction()451 assert(NumBits <= BitsLeft && "consistency error"); in EmitPrintInstruction()460 << (64-BitsLeft) << ") & " in EmitPrintInstruction()[all …]