Home | History | Annotate | Download | only in Analysis

Lines Matching refs:Coeff

1053     const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
1054 if (isa<SCEVCouldNotCompute>(Coeff))
1055 return Coeff;
1057 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2583 uint64_t Coeff;
2585 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2587 Coeff = Coeff1*Coeff2;
2588 const SCEV *CoeffTerm = getConstant(Ty, Coeff);