Home
last modified time | relevance | path

Searched refs:integerPartWidth (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp239 return ((bits) + APFloatBase::integerPartWidth - 1) / APFloatBase::integerPartWidth; in partCountForBits()
570 count = bits / APFloatBase::integerPartWidth; in ulpsFromBoundary()
571 partBits = bits % APFloatBase::integerPartWidth + 1; in ulpsFromBoundary()
685 part >>= (APFloatBase::integerPartWidth - 4 * count); in partAsHex()
863 ~integerPart(0) << (integerPartWidth - NumHighBits); in isSignificandAllOnes()
2524 unsigned bitPos = partsCount * integerPartWidth; in convertFromHexadecimalString()
2556 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2595 expAdjustment -= partsCount * integerPartWidth; in convertFromHexadecimalString()
3005 shift = integerPartWidth - valueBits % integerPartWidth; in convertNormalToHexString()
3033 count = (valueBits + integerPartWidth - 1) / integerPartWidth; in convertNormalToHexString()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h145 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member