Searched refs:integerPartWidth (Results 1 – 2 of 2) sorted by relevance
362 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()693 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()694 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()808 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()2829 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString()2861 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()2900 expAdjustment -= partsCount * integerPartWidth; in convertFromHexadecimalString()3312 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()3340 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()3355 unsigned int curDigits = integerPartWidth / 4; in convertNormalToHexString()[all …]
144 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member