Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11048 llvm::APSInt PromotedMin; member
11054 PromotedMin = PromotedMax = llvm::APSInt(BitWidth, Unsigned); in PromotedRange()
11059 PromotedMin = llvm::APSInt::getMinValue(BitWidth, Unsigned); in PromotedRange()
11062 PromotedMin = llvm::APSInt::getMinValue(R.Width, R.NonNegative) in PromotedRange()
11064 PromotedMin.setIsUnsigned(Unsigned); in PromotedRange()
11073 bool isContiguous() const { return PromotedMin <= PromotedMax; } in isContiguous()
11096 assert(Value.getBitWidth() == PromotedMin.getBitWidth() && in compare()
11097 Value.isUnsigned() == PromotedMin.isUnsigned()); in compare()
11102 if (Value >= PromotedMin) return InRange; in compare()
11107 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
[all …]