Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h190 return compareValues(*this, get(RHS)) == 0;
193 return compareValues(*this, get(RHS)) != 0;
196 return compareValues(*this, get(RHS)) <= 0;
199 return compareValues(*this, get(RHS)) >= 0;
202 return compareValues(*this, get(RHS)) < 0;
205 return compareValues(*this, get(RHS)) > 0;
321 return !compareValues(I1, I2); in isSameValue()
325 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() function
331 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
333 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenACC.cpp866 llvm::APSInt::compareValues(*LowerBoundValue, *BaseSize) >= 0) { in ActOnArraySectionExpr()
884 llvm::APSInt::compareValues(*LengthValue, *BaseSize) > 0) { in ActOnArraySectionExpr()
907 llvm::APSInt::compareValues(AddAPSInt(*LowerBoundValue, *LengthValue), in ActOnArraySectionExpr()
H A DSemaChecking.cpp361 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) { in BuiltinAlignment()
1450 llvm::APSInt::compareValues(*SourceSize, *DestinationSize) <= 0) in checkFortifiedBuiltinMemoryFunction()
11107 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
11111 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()
H A DSemaExprObjC.cpp912 return llvm::APSInt::compareValues(LHS, RHS) < 0; in CheckObjCDictionaryLiteralDuplicateKeys()
H A DSemaOpenMP.cpp10895 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) { in ActOnOpenMPCriticalDirective()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp521 return llvm::APSInt::compareValues( in isPtrBufferSafe()
569 return llvm::APSInt::compareValues(*E0CV, *E1CV) == 0; in isSafeSpanTwoParamConstruct()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp1129 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in interp__builtin_is_aligned_up_down()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp9899 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in getAlignmentArgument()
9908 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && in getAlignmentArgument()