Searched refs:integerPartWidth (Results 1 – 2 of 2) sorted by relevance
52 static_assert(APFloatBase::integerPartWidth % 4 == 0, "Part width must be divisible by 4!");321 ((maxPowerOfFiveExponent * 815) / (351 * APFloatBase::integerPartWidth));393 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()659 if (bits <= partCount * APFloatBase::integerPartWidth && in lostFractionThroughTruncation()724 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()725 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()727 …part = parts[count] & (~(APFloatBase::integerPart) 0 >> (APFloatBase::integerPartWidth - partBits)… in ulpsFromBoundary()832 assert(count != 0 && count <= APFloatBase::integerPartWidth / 4); in partAsHex()834 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()1033 PartCount*integerPartWidth - semantics->precision + 1; in isSignificandAllOnes()[all …]
145 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member