Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Rs

802     SmallVector<const SCEV *, 2> Qs, Rs;
814 Rs.push_back(R);
819 Remainder = Rs[0];
824 Remainder = SE.getAddExpr(Rs);
4254 const SCEV *RS = getNoopOrSignExtend(getSCEV(RHS), I->getType());
4258 const SCEV *RDiff = getMinusSCEV(RA, RS);
4260 return getAddExpr(getSMaxExpr(LS, RS), LDiff);
4261 LDiff = getMinusSCEV(LA, RS);
4264 return getAddExpr(getSMinExpr(LS, RS), LDiff);
4277 const SCEV *RS = getNoopOrZeroExtend(getSCEV(RHS), I->getType());
4281 const SCEV *RDiff = getMinusSCEV(RA, RS);
4283 return getAddExpr(getUMaxExpr(LS, RS), LDiff);
4284 LDiff = getMinusSCEV(LA, RS);
4287 return getAddExpr(getUMinExpr(LS, RS), LDiff);