Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp2191 unsigned int newPartCount, oldPartCount; in convert() local
2197 newPartCount = partCountForBits(toSemantics.precision + 1); in convert()
2240 if (newPartCount > oldPartCount) { in convert()
2243 newParts = new integerPart[newPartCount]; in convert()
2244 APInt::tcSet(newParts, 0, newPartCount); in convert()
2249 } else if (newPartCount == 1 && oldPartCount != 1) { in convert()
2264 APInt::tcShiftLeft(significandParts(), newPartCount, shift); in convert()