Home | History | Annotate | Download | only in src

Lines Matching full:double

44  * as the i387 must be set in double-precision mode if variables are
52 double
53 fma(double x, double y, double z)
55 static const double split = 0x1p27 + 1.0;
56 double xs, ys, zs;
57 double c, cc, hx, hy, p, q, tx, ty;
58 double r, rr, s;
177 * avoid double rounding.
190 * 113 bits of precision is more than twice the precision of a double,
193 double
194 fma(double x, double y, double z)
196 return ((long double)x * y + z);