Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp362 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 …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h144 static constexpr unsigned integerPartWidth = APInt::APINT_BITS_PER_WORD; member