Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2732 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2738 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2747 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2778 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2783 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2788 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2789 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2790 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2791 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2795 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|