Searched refs:compareValues (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APSInt.h | 189 return compareValues(*this, get(RHS)) == 0; 192 return compareValues(*this, get(RHS)) != 0; 195 return compareValues(*this, get(RHS)) <= 0; 198 return compareValues(*this, get(RHS)) >= 0; 201 return compareValues(*this, get(RHS)) < 0; 204 return compareValues(*this, get(RHS)) > 0; 320 return !compareValues(I1, I2); in isSameValue() 324 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() function 330 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues() 332 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenACC.cpp | 1560 llvm::APSInt::compareValues(*LowerBoundValue, *BaseSize) >= 0) { in ActOnArraySectionExpr() 1578 llvm::APSInt::compareValues(*LengthValue, *BaseSize) > 0) { in ActOnArraySectionExpr() 1601 llvm::APSInt::compareValues(AddAPSInt(*LowerBoundValue, *LengthValue), in ActOnArraySectionExpr()
|
H A D | SemaChecking.cpp | 363 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) { in BuiltinAlignment() 1444 llvm::APSInt::compareValues(*SourceSize, *DestinationSize) <= 0) in checkFortifiedBuiltinMemoryFunction() 9868 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare() 9872 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()
|
H A D | SemaExprObjC.cpp | 917 return llvm::APSInt::compareValues(LHS, RHS) < 0; in CheckObjCDictionaryLiteralDuplicateKeys()
|
H A D | SemaOpenMP.cpp | 10830 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) { in ActOnOpenMPCriticalDirective()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | UnsafeBufferUsage.cpp | 363 return APSInt::compareValues(*E0CV, *E1CV) == 0; in AST_MATCHER() 410 return Arg1CV && APSInt::compareValues(ConstArrSize, *Arg1CV) == 0; in AST_MATCHER()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | InterpBuiltin.cpp | 1003 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in interp__builtin_is_aligned_up_down()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 9476 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in getAlignmentArgument() 9485 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && in getAlignmentArgument()
|