Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h261 int compareSigned(const APInt &RHS) const LLVM_READONLY;
1197 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; } in slt()
1232 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle()
DAPSInt.h291 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2); in compareValues()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp282 int APInt::compareSigned(const APInt& RHS) const { in compareSigned() function in APInt