Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Coeff

779     const SCEV *Coeff = BinomialCoefficient(It, i, SE, getType());
780 if (isa<SCEVCouldNotCompute>(Coeff))
781 return Coeff;
783 Result = SE.getAddExpr(Result, SE.getMulExpr(getOperand(i), Coeff));
2053 uint64_t Coeff;
2055 Coeff = umul_ov(Coeff1, Coeff2, Overflow);
2057 Coeff = Coeff1*Coeff2;
2058 const SCEV *CoeffTerm = getConstant(Ty, Coeff);