Home
last modified time | relevance | path

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

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