Home | History | Annotate | Download | only in Support

Lines Matching refs:urem

822     B = APIntOps::urem(A, B);
1426 anc = t - 1 - t.urem(ad); // absolute value of nc
1471 nc = allOnes - (allOnes - d).urem(d);
1647 // compute the remainder (urem uses this).
1897 APInt APInt::urem(const APInt& RHS) const {
1937 return -((-(*this)).urem(-RHS));
1938 return -((-(*this)).urem(RHS));
1941 return this->urem(-RHS);
1942 return this->urem(RHS);