Searched refs:integerPartWidth (Results 1 – 2 of 2) sorted by relevance
179 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()497 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()498 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()612 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()789 ~integerPart(0) << (integerPartWidth - NumHighBits); in isSignificandAllOnes()2278 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString()2306 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()2338 expAdjustment -= partsCount * integerPartWidth; in convertFromHexadecimalString()2692 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()2720 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()[all …]
144 static const unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member