Lines Matching refs:Coeff
135 Coeff += T.Coeff; in operator +=()
139 const FAddendCoef &getCoef() const { return Coeff; } in getCoef()
142 bool isZero() const { return Coeff.isZero(); } in isZero()
145 Coeff.set(Coefficient); in set()
149 Coeff.set(Coefficient); in set()
153 Coeff.set(Coefficient->getValueAPF()); in set()
157 void negate() { Coeff.negate(); } in negate()
168 void Scale(const FAddendCoef& ScaleAmt) { Coeff *= ScaleAmt; } in Scale()
172 FAddendCoef Coeff; member in __anon84b617a60111::FAddend
416 if (!BreakNum || Coeff.isOne()) in drillAddendDownOneStep()
419 Addend0.Scale(Coeff); in drillAddendDownOneStep()
422 Addend1.Scale(Coeff); in drillAddendDownOneStep()
724 const FAddendCoef &Coeff = Opnd.getCoef(); in createAddendVal() local
728 return Coeff.getValue(Instr->getType()); in createAddendVal()
733 if (Coeff.isMinusOne() || Coeff.isOne()) { in createAddendVal()
734 NeedNeg = Coeff.isMinusOne(); in createAddendVal()
738 if (Coeff.isTwo() || Coeff.isMinusTwo()) { in createAddendVal()
739 NeedNeg = Coeff.isMinusTwo(); in createAddendVal()
744 return createFMul(OpndVal, Coeff.getValue(Instr->getType())); in createAddendVal()