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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp10640 llvm::APSInt PromotedMax; member in struct:__anon3154::PromotedRange
10644 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned);
10650 PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned);
10656 PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative)
10658 PromotedMax.setIsUnsigned(Unsigned);
10663 bool isContiguous() const { return PromotedMin <= PromotedMax; }
10693 if (Value <= PromotedMax) return InRange;
10699 case 0: return PromotedMin == PromotedMax ? OnlyValue : Min;
10701 switch (llvm::APSInt::compareValues(Value, PromotedMax)) {

Completed in 78 milliseconds