Lines Matching defs:two
44 * to dig two 32 bit words out of the 64 bit IEEE floating point
52 /* Get two 32 bit ints from a double. */
77 /* Set a double from two 32 bit ints. */
1615 * Here ln2 is split into two floating point number:
1751 * Here ln2 is split into two floating point number:
1915 * Here ln2 is split into two floating point number:
2597 * 1. Compute and return log2(x) in two pieces:
2642 zero = 0.0, one = 1.0, two = 2.0,
2886 r = base::Divide(z * t1, (t1 - two) - (w + z * w));
2977 static const double one = 1.0, two = 2.0, huge = 1.0e300;
2998 t = expm1(two * fabs(x));
2999 z = one - two / (t + two);
3001 t = expm1(-two * fabs(x));
3002 z = -t / (t + two);