Lines Matching refs:dstPartsCount

2590   unsigned int dstPartsCount, truncatedBits;  in convertToSignExtendedInteger()  local
2598 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2599 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToSignExtendedInteger()
2602 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2614 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2630 APInt::tcExtract(parts.data(), dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2633 APInt::tcExtract(parts.data(), dstPartsCount, src, semantics->precision, in convertToSignExtendedInteger()
2635 APInt::tcShiftLeft(parts.data(), dstPartsCount, in convertToSignExtendedInteger()
2648 if (APInt::tcIncrement(parts.data(), dstPartsCount)) in convertToSignExtendedInteger()
2656 unsigned int omsb = APInt::tcMSB(parts.data(), dstPartsCount) + 1; in convertToSignExtendedInteger()
2668 APInt::tcLSB(parts.data(), dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger()
2676 APInt::tcNegate (parts.data(), dstPartsCount); in convertToSignExtendedInteger()
2708 unsigned int bits, dstPartsCount; in convertToInteger() local
2710 dstPartsCount = partCountForBits(width); in convertToInteger()
2711 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToInteger()
2720 tcSetLeastSignificantBits(parts.data(), dstPartsCount, bits); in convertToInteger()
2722 APInt::tcShiftLeft(parts.data(), dstPartsCount, width - 1); in convertToInteger()