Home
last modified time | relevance | path

Searched refs:srcCount (Results 1 – 1 of 1) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp2239 unsigned int srcCount, in convertFromUnsignedParts() argument
2247 omsb = APInt::tcMSB(src, srcCount) + 1; in convertFromUnsignedParts()
2256 lost_fraction = lostFractionThroughTruncation(src, srcCount, in convertFromUnsignedParts()
2290 unsigned int srcCount, in convertFromSignExtendedInteger() argument
2297 APInt::tcExtractBit(src, srcCount * integerPartWidth - 1)) { in convertFromSignExtendedInteger()
2302 copy = new integerPart[srcCount]; in convertFromSignExtendedInteger()
2303 APInt::tcAssign(copy, src, srcCount); in convertFromSignExtendedInteger()
2304 APInt::tcNegate(copy, srcCount); in convertFromSignExtendedInteger()
2305 status = convertFromUnsignedParts(copy, srcCount, rounding_mode); in convertFromSignExtendedInteger()
2309 status = convertFromUnsignedParts(src, srcCount, rounding_mode); in convertFromSignExtendedInteger()