Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DScaledNumber.h501 typedef DigitsT DigitsType; typedef
504 typedef std::numeric_limits<DigitsType> DigitsLimits;
506 static constexpr int Width = sizeof(DigitsType) * 8;
510 DigitsType Digits = 0;
516 constexpr ScaledNumber(DigitsType Digits, int16_t Scale) in ScaledNumber()
533 static ScaledNumber getFraction(DigitsType N, DigitsType D) { in getFraction()
538 DigitsType getDigits() const { return Digits; } in getDigits()
551 return Digits == DigitsType(1) << -Scale; in isOne()
684 static ScaledNumber getProduct(DigitsType LHS, DigitsType RHS) { in getProduct()
687 static ScaledNumber getQuotient(DigitsType Dividend, DigitsType Divisor) { in getQuotient()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp491 const unsigned MaxBits = sizeof(Scaled64::DigitsType) * CHAR_BIT; in convertFloatingToInteger()