Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPSInt.h189 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()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaChecking.cpp331 if (llvm::APSInt::compareValues(AlignValue, MaxValue) > 0) { in SemaBuiltinAlignment()
1333 llvm::APSInt::compareValues(*SourceSize, *DestinationSize) <= 0) in checkFortifiedBuiltinMemoryFunction()
12901 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
12905 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()
H A DSemaExprObjC.cpp911 return llvm::APSInt::compareValues(LHS, RHS) < 0; in CheckObjCDictionaryLiteralDuplicateKeys()
H A DSemaOpenMP.cpp10841 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) { in ActOnOpenMPCriticalDirective()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp9083 if (APSInt::compareValues(Alignment, MaxValue) > 0) { in getAlignmentArgument()
9092 assert(APSInt::compareValues(Alignment, ExtAlignment) == 0 && in getAlignmentArgument()