Searched refs:MaxBits (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | BlockFrequencyInfoImpl.cpp | 491 const unsigned MaxBits = sizeof(Scaled64::DigitsType) * CHAR_BIT; in convertFloatingToInteger() local 496 Scaled64 ScalingFactor = Scaled64(1, MaxBits - Slack) / Max; in convertFloatingToInteger()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | InterpBuiltin.cpp | 796 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in interp__builtin_overflowop() local 803 ++MaxBits; in interp__builtin_overflowop() 805 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); in interp__builtin_overflowop() 806 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); in interp__builtin_overflowop() 807 Result = APSInt(MaxBits, !IsSigned); in interp__builtin_overflowop()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 2116 unsigned MaxBits = LCPPopCount + (BitWidth - LCPLength) - in getUnsignedPopCountRange() local 2118 return ConstantRange(APInt(BitWidth, MinBits), APInt(BitWidth, MaxBits + 1)); in getUnsignedPopCountRange()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 13741 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in VisitBuiltinCallExpr() local 13748 ++MaxBits; in VisitBuiltinCallExpr() 13750 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr() 13751 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr() 13752 Result = APSInt(MaxBits, !IsSigned); in VisitBuiltinCallExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
| H A D | AArch64AsmParser.cpp | 2665 unsigned MaxBits = 8; in print() local 2666 for (unsigned I = MaxBits; I > 0; --I) in print()
|