Lines Matching defs:More
5538 // More formally, we want to prove that:
10932 // TODO: More simplifications are possible here.
12057 ScalarEvolution::computeConstantDifference(const SCEV *More, const SCEV *Less) {
12061 unsigned BW = getTypeSizeInBits(More->getType());
12067 if (More == Less)
12071 if (isa<SCEVAddRecExpr>(Less) && isa<SCEVAddRecExpr>(More)) {
12073 const auto *MAR = cast<SCEVAddRecExpr>(More);
12087 More = MAR->getStart();
12101 if (auto MatchedMore = MatchConstMul(More)) {
12104 More = MatchedMore->first;
12132 Decompose(More, 1);
12136 // More/Less values.
12154 if (NewMore == More || NewLess == Less)
12157 More = NewMore;
12161 if (!More && !Less)
12165 if (!More || !Less)