Searched refs:dstPartsCount (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2104 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local 2112 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger() 2115 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2127 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2143 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger() 2146 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0); in convertToSignExtendedInteger() 2147 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision); in convertToSignExtendedInteger() 2159 if (APInt::tcIncrement(parts, dstPartsCount)) in convertToSignExtendedInteger() 2167 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1; in convertToSignExtendedInteger() 2178 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger() [all …]
|