Lines Matching defs:Coeff
135 Coeff += T.Coeff;
139 const FAddendCoef &getCoef() const { return Coeff; }
142 bool isZero() const { return Coeff.isZero(); }
145 Coeff.set(Coefficient);
149 Coeff.set(Coefficient);
153 Coeff.set(Coefficient->getValueAPF());
157 void negate() { Coeff.negate(); }
168 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; }
170 // This addend has the value of "Coeff * Val".
172 FAddendCoef Coeff;
416 if (!BreakNum || Coeff.isOne())
419 Addend0.Scale(Coeff);
422 Addend1.Scale(Coeff);
724 const FAddendCoef &Coeff = Opnd.getCoef();
728 return Coeff.getValue(Instr->getType());
733 if (Coeff.isMinusOne() || Coeff.isOne()) {
734 NeedNeg = Coeff.isMinusOne();
738 if (Coeff.isTwo() || Coeff.isMinusTwo()) {
739 NeedNeg = Coeff.isMinusTwo();
744 return createFMul(OpndVal, Coeff.getValue(Instr->getType()));