Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2865 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2871 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2880 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2911 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2916 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2921 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2922 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2923 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2924 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2928 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|