Lines Matching refs:Coeff
120 const FAddendCoef &getCoef() const { return Coeff; } in getCoef()
123 bool isZero() const { return Coeff.isZero(); } in isZero()
126 Coeff.set(Coefficient); in set()
130 Coeff.set(Coefficient); in set()
134 Coeff.set(Coefficient->getValueAPF()); in set()
138 void negate() { Coeff.negate(); } in negate()
150 Coeff += T.Coeff; in operator +=()
154 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; } in Scale()
158 FAddendCoef Coeff; member in __anon2c9765910111::FAddend
405 if (!BreakNum || Coeff.isOne()) in drillAddendDownOneStep()
408 Addend0.Scale(Coeff); in drillAddendDownOneStep()
411 Addend1.Scale(Coeff); in drillAddendDownOneStep()
821 const FAddendCoef &Coeff = Opnd.getCoef(); in createAddendVal() local
825 return Coeff.getValue(Instr->getType()); in createAddendVal()
830 if (Coeff.isMinusOne() || Coeff.isOne()) { in createAddendVal()
831 NeedNeg = Coeff.isMinusOne(); in createAddendVal()
835 if (Coeff.isTwo() || Coeff.isMinusTwo()) { in createAddendVal()
836 NeedNeg = Coeff.isMinusTwo(); in createAddendVal()
841 return createFMul(OpndVal, Coeff.getValue(Instr->getType())); in createAddendVal()