Lines Matching refs:dstPartsCount

2621   unsigned int dstPartsCount, truncatedBits;  in convertToSignExtendedInteger()  local
2629 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2630 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToSignExtendedInteger()
2633 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2645 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2661 APInt::tcExtract(parts.data(), dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2664 APInt::tcExtract(parts.data(), dstPartsCount, src, semantics->precision, in convertToSignExtendedInteger()
2666 APInt::tcShiftLeft(parts.data(), dstPartsCount, in convertToSignExtendedInteger()
2679 if (APInt::tcIncrement(parts.data(), dstPartsCount)) in convertToSignExtendedInteger()
2687 unsigned int omsb = APInt::tcMSB(parts.data(), dstPartsCount) + 1; in convertToSignExtendedInteger()
2699 APInt::tcLSB(parts.data(), dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger()
2707 APInt::tcNegate (parts.data(), dstPartsCount); in convertToSignExtendedInteger()
2739 unsigned int bits, dstPartsCount; in convertToInteger() local
2741 dstPartsCount = partCountForBits(width); in convertToInteger()
2742 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToInteger()
2751 tcSetLeastSignificantBits(parts.data(), dstPartsCount, bits); in convertToInteger()
2753 APInt::tcShiftLeft(parts.data(), dstPartsCount, width - 1); in convertToInteger()