Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2181 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2187 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2196 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2227 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2232 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2237 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2238 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2239 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2240 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2244 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|