Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp11209 llvm::APSInt PromotedMax; member
11213 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned); in PromotedRange()
11219 PromotedMax = llvm::APSInt::getMaxValue(BitWidth, Unsigned); in PromotedRange()
11225 PromotedMax = llvm::APSInt::getMaxValue(R.Width, R.NonNegative) in PromotedRange()
11227 PromotedMax.setIsUnsigned(Unsigned); in PromotedRange()
11232 bool isContiguous() const { return PromotedMin <= PromotedMax; } in isContiguous()
11262 if (Value <= PromotedMax) return InRange; in compare()
11268 case 0: return PromotedMin == PromotedMax ? OnlyValue : Min; in compare()
11270 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()