Searched refs:integerPartWidth (Results 1 – 2 of 2) sorted by relevance
50 static_assert(APFloatBase::integerPartWidth % 4 == 0, "Part width must be divisible by 4!");209 …maxPowerOfFiveParts = 2 + ((maxPowerOfFiveExponent * 815) / (351 * APFloatBase::integerPartWidth));239 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()505 if (bits <= partCount * APFloatBase::integerPartWidth && in lostFractionThroughTruncation()570 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()571 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()573 …part = parts[count] & (~(APFloatBase::integerPart) 0 >> (APFloatBase::integerPartWidth - partBits)… in ulpsFromBoundary()683 assert(count != 0 && count <= APFloatBase::integerPartWidth / 4); in partAsHex()685 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()859 PartCount*integerPartWidth - semantics->precision + 1; in isSignificandAllOnes()[all …]
145 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member