Lines Matching refs:dstPartsCount
2083 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local
2091 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2094 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger()
2106 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger()
2122 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2125 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0); in convertToSignExtendedInteger()
2126 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision); in convertToSignExtendedInteger()
2138 if (APInt::tcIncrement(parts, dstPartsCount)) in convertToSignExtendedInteger()
2146 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1; in convertToSignExtendedInteger()
2157 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger()
2165 APInt::tcNegate (parts, dstPartsCount); in convertToSignExtendedInteger()
2198 unsigned int bits, dstPartsCount; in convertToInteger() local
2200 dstPartsCount = partCountForBits(width); in convertToInteger()
2209 APInt::tcSetLeastSignificantBits(parts, dstPartsCount, bits); in convertToInteger()
2211 APInt::tcShiftLeft(parts, dstPartsCount, width - 1); in convertToInteger()