Searched refs:dstPartsCount (Results 1 – 1 of 1) sorted by relevance
/external/llvm/lib/Support/ |
D | APFloat.cpp | 2083 unsigned int dstPartsCount, truncatedBits; in convertToSignExtendedInteger() local 2091 dstPartsCount = partCountForBits(width); in convertToSignExtendedInteger() 2094 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2106 APInt::tcSet(parts, 0, dstPartsCount); in convertToSignExtendedInteger() 2122 APInt::tcExtract(parts, dstPartsCount, src, bits, truncatedBits); in convertToSignExtendedInteger() 2125 APInt::tcExtract(parts, dstPartsCount, src, semantics->precision, 0); in convertToSignExtendedInteger() 2126 APInt::tcShiftLeft(parts, dstPartsCount, bits - semantics->precision); in convertToSignExtendedInteger() 2138 if (APInt::tcIncrement(parts, dstPartsCount)) in convertToSignExtendedInteger() 2146 unsigned int omsb = APInt::tcMSB(parts, dstPartsCount) + 1; in convertToSignExtendedInteger() 2157 if (omsb == width && APInt::tcLSB(parts, dstPartsCount) + 1 != omsb) in convertToSignExtendedInteger() [all …]
|