Lines Matching defs:Quotient
53 // Computes the Quotient and Remainder of the division of Numerator by
56 const SCEV *Denominator, const SCEV **Quotient,
65 *Quotient = D.One;
71 *Quotient = D.Zero;
78 *Quotient = Numerator;
86 *Quotient = Numerator;
88 divide(SE, *Quotient, Op, &Q, &R);
89 *Quotient = Q;
94 *Quotient = D.Zero;
104 *Quotient = D.Quotient;
123 Quotient = SE.getConstant(QuotientVal);
144 Quotient = SE.getAddRecExpr(StartQ, StepQ, Numerator->getLoop(),
167 Quotient = Qs[0];
172 Quotient = SE.getAddExpr(Qs);
210 Quotient = Qs[0];
212 Quotient = SE.getMulExpr(Qs);
225 // The Quotient is obtained by replacing Denominator by 1 in Numerator.
227 Quotient = SCEVParameterRewriter::rewrite(Numerator, SE, RewriteMap);
231 // Quotient is (Numerator - Remainder) divided by Denominator.
240 Quotient = Q;
257 Quotient = Zero;