Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp2174 unsigned int newPartCount, oldPartCount; in convert() local
2180 newPartCount = partCountForBits(toSemantics.precision + 1); in convert()
2216 if (newPartCount > oldPartCount) { in convert()
2219 newParts = new integerPart[newPartCount]; in convert()
2220 APInt::tcSet(newParts, 0, newPartCount); in convert()
2225 } else if (newPartCount == 1 && oldPartCount != 1) { in convert()
2240 APInt::tcShiftLeft(significandParts(), newPartCount, shift); in convert()