Home | History | Annotate | Download | only in Support

Lines Matching refs:urem

810     B = APIntOps::urem(A, B);
1405 anc = t - 1 - t.urem(ad); // absolute value of nc
1450 nc = allOnes - (allOnes - d).urem(d);
1641 // compute the remainder (urem uses this).
1891 APInt APInt::urem(const APInt& RHS) const {
1931 return -((-(*this)).urem(-RHS));
1932 return -((-(*this)).urem(RHS));
1935 return this->urem(-RHS);
1936 return this->urem(RHS);