Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2578 const integerPart *src, unsigned int srcCount, roundingMode rounding_mode) { in convertFromUnsignedParts() argument 2584 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts() 2593 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts() 2624 unsigned int srcCount, bool isSigned, in convertFromSignExtendedInteger() argument 2629 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger() 2634 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger() 2635 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger() 2636 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger() 2637 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger() 2641 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()
|