Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h1108 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; } in slt()
1144 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle()
2033 int compareSigned(const APInt &RHS) const LLVM_READONLY;
H A DAPSInt.h326 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2); in compareValues()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp281 int APInt::compareSigned(const APInt& RHS) const { in compareSigned() function in APInt