Lines Matching refs:d_hi
554 long double d, d_hi, d_lo, dk, f_lo, val_hi, val_lo, z;
614 d_hi = x * G(i) - 1;
617 d_hi = (x - H(i)) * G(i) + E(i);
625 d_hi = x_hi * G(i) - 1 + x_lo * G(i);
631 * This is _2sumF(d_hi, d_lo) inlined. The condition
632 * (d_hi == 0 || |d_hi| >= |d_lo|) for using _2sumF() is not
635 * normalized d_lo, since |d_lo| > |d_hi| implies that i is
638 * (By exhaustive testing, the worst case is d_hi = 0x1.bp-25.
643 d = d_hi + d_lo;
644 d_lo = d_hi - d + d_lo;
645 d_hi = d;
650 val_hi = d_hi;