Searched refs:getRounded (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DScaledNumber.cpp51 return getRounded(Upper, Shift,
77 return getRounded<uint32_t>(Quotient, Shift, Remainder >= getHalf(Divisor));
121 return getRounded(Quotient, Shift, Dividend >= getHalf(Divisor));
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h52 inline std::pair<DigitsT, int16_t> getRounded(DigitsT Digits, int16_t Scale, function in namespace:llvm::ScaledNumbers
66 return getRounded(Digits, Scale, ShouldRound);
72 return getRounded(Digits, Scale, ShouldRound);
89 return getRounded<DigitsT>(Digits >> Shift, Scale + Shift,
709 static ScaledNumber getRounded(ScaledNumber P, bool Round) { function in class:llvm::ScaledNumber
714 return ScaledNumbers::getRounded(P.Digits, P.Scale, Round);

Completed in 176 milliseconds