Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Remainder

206 /// S need not be evenly divisible if a reasonable remainder can be
212 const SCEV *&Remainder,
237 // If the quotient is zero and the remainder is non-zero, reject
243 Remainder =
244 SE.getAddExpr(Remainder,
274 const SCEV *Remainder = SE.getConstant(SOp->getType(), 0);
275 if (FactorOutConstant(SOp, Remainder, Factor, SE, TD) &&
276 Remainder->isZero()) {
295 if (!FactorOutConstant(Start, Remainder, Factor, SE, TD))
425 const SCEV *Remainder = SE.getConstant(Ty, 0);
426 if (FactorOutConstant(Op, Remainder, ElSize, SE, SE.TD)) {
429 if (!Remainder->isZero())
430 NewOps.push_back(Remainder);