Searched refs:compareSigned (Results 1 – 3 of 3) sorted by relevance
1130 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; } in slt()1166 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle()2106 LLVM_ABI int compareSigned(const APInt &RHS) const LLVM_READONLY;
327 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2); in compareValues()
292 int APInt::compareSigned(const APInt& RHS) const { in compareSigned() function in APInt