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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h261 int compareSigned(const APInt &RHS) const LLVM_READONLY;
1224 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; }
1259 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; }
H A DAPSInt.h308 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp283 int APInt::compareSigned(const APInt& RHS) const { function in class:APInt

Completed in 83 milliseconds