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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp473 // fits well within MaxBits, we make the scale be at least 8.
474 const unsigned MaxBits = 64; local
477 if (SpreadBits <= MaxBits - 3) {
483 // If the values need more than MaxBits to be represented, saturate small
486 ScalingFactor = Scaled64(1, MaxBits) / Max;
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp11599 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize);
11603 // MaxBits, but the code to check that is pretty nasty. The issue will be
11606 ++MaxBits;
11608 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned);
11609 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned);
11610 Result = APSInt(MaxBits, !IsSigned);

Completed in 69 milliseconds