Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APFloat.cpp | 2763 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2769 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2778 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2809 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2814 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2819 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2820 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2821 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2822 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2826 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|