Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Coeff

808     const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
809 if (isa<SCEVCouldNotCompute>(Coeff))
810 return Coeff;
812 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2101 uint64_t Coeff;
2103 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2105 Coeff = Coeff1*Coeff2;
2106 const SCEV *CoeffTerm = getConstant(Ty, Coeff);