Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp50 static_assert(APFloatBase::integerPartWidth % 4 == 0, "Part width must be divisible by 4!");
238 …maxPowerOfFiveParts = 2 + ((maxPowerOfFiveExponent * 815) / (351 * APFloatBase::integerPartWidth));
268 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()
534 if (bits <= partCount * APFloatBase::integerPartWidth && in lostFractionThroughTruncation()
599 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()
600 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()
602 …part = parts[count] & (~(APFloatBase::integerPart) 0 >> (APFloatBase::integerPartWidth - partBits)… in ulpsFromBoundary()
712 assert(count != 0 && count <= APFloatBase::integerPartWidth / 4); in partAsHex()
714 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()
902 PartCount*integerPartWidth - semantics->precision + 1; in isSignificandAllOnes()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h144 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member