Searched refs:MaxBits (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpBuiltin.cpp | 691 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in interp__builtin_overflowop() local 698 ++MaxBits; in interp__builtin_overflowop() 700 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); in interp__builtin_overflowop() 701 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); in interp__builtin_overflowop() 702 Result = APSInt(MaxBits, !IsSigned); in interp__builtin_overflowop()
|
/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/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 1931 unsigned MaxBits = LCPPopCount + (BitWidth - LCPLength) - in getUnsignedPopCountRange() local 1933 return ConstantRange(APInt(BitWidth, MinBits), APInt(BitWidth, MaxBits + 1)); in getUnsignedPopCountRange()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 13093 uint64_t MaxBits = std::max(std::max(LHSSize, RHSSize), ResultSize); in VisitBuiltinCallExpr() local 13100 ++MaxBits; in VisitBuiltinCallExpr() 13102 LHS = APSInt(LHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr() 13103 RHS = APSInt(RHS.extOrTrunc(MaxBits), !IsSigned); in VisitBuiltinCallExpr() 13104 Result = APSInt(MaxBits, !IsSigned); in VisitBuiltinCallExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/AsmParser/ |
H A D | AArch64AsmParser.cpp | 2604 unsigned MaxBits = 8; in print() local 2605 for (unsigned I = MaxBits; I > 0; --I) in print()
|