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))
424 const SCEV *Remainder = SE.getConstant(Ty, 0);
425 if (FactorOutConstant(Op, Remainder, ElSize, SE, SE.TD)) {
428 if (!Remainder->isZero())
429 NewOps.push_back(Remainder);