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!");322 ((maxPowerOfFiveExponent * 815) / (351 * APFloatBase::integerPartWidth));420 return std::max(1u, (bits + APFloatBase::integerPartWidth - 1) / in partCountForBits()421 APFloatBase::integerPartWidth); in partCountForBits()687 if (bits <= partCount * APFloatBase::integerPartWidth && in lostFractionThroughTruncation()752 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()753 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()755 …part = parts[count] & (~(APFloatBase::integerPart) 0 >> (APFloatBase::integerPartWidth - partBits)… in ulpsFromBoundary()860 assert(count != 0 && count <= APFloatBase::integerPartWidth / 4); in partAsHex()862 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()[all …]
146 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member389 static constexpr unsigned integerPartWidth = APFloatBase::integerPartWidth; variable