Lines Matching refs:dstPartsCount

2309   unsigned int dstPartsCount, truncatedBits;  in convertToSignExtendedInteger()  local
2317 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger()
2318 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToSignExtendedInteger()
2321 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2333 APInt::tcSet(parts.data(), 0, dstPartsCount); in convertToSignExtendedInteger()
2349 APInt::tcExtract(parts.data(), dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger()
2352 APInt::tcExtract(parts.data(), dstPartsCount, src, semantics->precision, in convertToSignExtendedInteger()
2354 APInt::tcShiftLeft(parts.data(), dstPartsCount, in convertToSignExtendedInteger()
2367 if (APInt::tcIncrement(parts.data(), dstPartsCount)) in convertToSignExtendedInteger()
2375 unsigned int omsb = APInt::tcMSB(parts.data(), dstPartsCount) + 1; in convertToSignExtendedInteger()
2387 APInt::tcLSB(parts.data(), dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger()
2395 APInt::tcNegate (parts.data(), dstPartsCount); in convertToSignExtendedInteger()
2427 unsigned int bits, dstPartsCount; in convertToInteger() local
2429 dstPartsCount = partCountForBits(width); in convertToInteger()
2430 assert(dstPartsCount <= parts.size() && "Integer too big"); in convertToInteger()
2439 tcSetLeastSignificantBits(parts.data(), dstPartsCount, bits); in convertToInteger()
2441 APInt::tcShiftLeft(parts.data(), dstPartsCount, width - 1); in convertToInteger()