Searched refs:BitsLeft (Results 1 – 2 of 2) sorted by relevance
349 unsigned BitsLeft = 64-AsmStrBits; in EmitPrintInstruction() local368 if (NumBits > BitsLeft) { in EmitPrintInstruction()377 OpcodeInfo[i] |= (uint64_t)InstIdxs[i] << (64-BitsLeft); in EmitPrintInstruction()379 BitsLeft -= NumBits; in EmitPrintInstruction()409 if (BitsLeft < 32) { in EmitPrintInstruction()413 << ((BitsLeft < 16) ? "32" : (BitsLeft < 24) ? "16" : "8") in EmitPrintInstruction()432 if (BitsLeft < 32) { in EmitPrintInstruction()446 BitsLeft = 64-AsmStrBits; in EmitPrintInstruction()453 assert(NumBits <= BitsLeft && "consistency error"); in EmitPrintInstruction()462 << (64-BitsLeft) << ") & " in EmitPrintInstruction()[all …]
381 unsigned BitsLeft = NumBits-BitsInCurWord; in Read() local384 R |= uint32_t((CurWord & (word_t(~0ULL) >> (sizeof(word_t)*8-BitsLeft))) in Read()389 if (BitsLeft != sizeof(word_t)*8) in Read()390 CurWord >>= BitsLeft; in Read()393 BitsInCurWord = sizeof(word_t)*8-BitsLeft; in Read()