Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h172 return compareValues(*this, get(RHS)) == 0;
175 return compareValues(*this, get(RHS)) != 0;
178 return compareValues(*this, get(RHS)) <= 0;
181 return compareValues(*this, get(RHS)) >= 0;
184 return compareValues(*this, get(RHS)) < 0;
187 return compareValues(*this, get(RHS)) > 0;
297 return !compareValues(I1, I2); in isSameValue()
301 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() function
307 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
309 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp910 return llvm::APSInt::compareValues(LHS, RHS) < 0; in CheckObjCDictionaryLiteralDuplicateKeys()
H A DSemaChecking.cpp254 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) { in SemaBuiltinAlignment()
11539 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
11543 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()
H A DSemaOpenMP.cpp9969 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) { in ActOnOpenMPCriticalDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp8933 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in getAlignmentArgument()
8942 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && in getAlignmentArgument()