Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2451 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2457 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2466 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2497 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2502 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2507 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2508 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2509 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2510 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2514 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|