Searched defs:ult (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Support/
H A DAPInt.cpp515 bool APInt::ult(const APInt& RHS) const { function in class:APInt
580 return lhs.ult(rhs);
1337 if (this->ult(square))
1342 if (offset.ult(midpoint))
1353 assert(ult(modulo) && "This APInt must be smaller than the modulo");
1425 } while (q1.ult(delta) || (q1 == delta && r1 == 0));
1477 (q1.ult(delta) || (q1 == delta && r1 == 0)));
1862 else if (lhsWords < rhsWords || this->ult(RHS)) {
1910 } else if (lhsWords < rhsWords || this->ult(RHS)) {
1953 if (lhsWords < rhsWords || LHS.ult(RH
[all...]

Completed in 749 milliseconds