Searched refs:dstPartsCount (Results 1 – 1 of 1) sorted by relevance
| /NextBSD/contrib/llvm/lib/Support/ |
| HD | APFloat.cpp | 2086 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local 2094 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger() 2097 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2109 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2125 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger() 2128 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0); in convertToSignExtendedInteger() 2129 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision); in convertToSignExtendedInteger() 2141 if (APInt::tcIncrement(parts, dstPartsCount)) in convertToSignExtendedInteger() 2149 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1; in convertToSignExtendedInteger() 2160 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger() [all …]
|