Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPSInt.h160 return compareValues(*this, get(RHS)) == 0;
163 return compareValues(*this, get(RHS)) != 0;
166 return compareValues(*this, get(RHS)) <= 0;
169 return compareValues(*this, get(RHS)) >= 0;
172 return compareValues(*this, get(RHS)) < 0;
175 return compareValues(*this, get(RHS)) > 0;
285 return !compareValues(I1, I2); in isSameValue()
289 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() function
295 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
297 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp10026 switch (llvm::APSInt::compareValues(Value, PromotedMin)) { in compare()
10030 switch (llvm::APSInt::compareValues(Value, PromotedMax)) { in compare()
H A DSemaOpenMP.cpp6008 if (llvm::APSInt::compareValues(Hint, Pair.second) != 0) { in ActOnOpenMPCriticalDirective()