Lines Matching full:coefficient
28 /// Class representing coefficient of floating-point addend.
37 // most addends which have coefficient either 1 or -1. So, the constructor
46 assert(!insaneIntVal(C) && "Insane coefficient");
88 // If the coefficient is represented by an integer, promote it to a
103 // The integer coefficient of an individual addend is either 1 or -1,
114 /// constant coefficient. A constant addend is represented as <C, 0>.
126 void set(short Coefficient, Value *V) { Coeff.set(Coefficient), Val = V; }
127 void set(const APFloat& Coefficient, Value *V)
128 { Coeff.set(Coefficient); Val = V; }
129 void set(const ConstantFP* Coefficient, Value *V)
130 { Coeff.set(Coefficient->getValueAPF()); Val = V; }
835 // <+/-1, V> V coefficient is -1
836 // <2/-2, V> "fadd V, V" coefficient is -2