Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | APFloat.cpp | 2427 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2433 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2442 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2473 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2478 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2483 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2484 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2485 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2486 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2490 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|