Lines Matching defs:d_hi
565 long double d, d_hi, f_lo, val_hi, val_lo;
622 d_hi = x * G(i) - 1;
625 d_hi = (x - H(i)) * G(i) + E(i);
633 d_hi = x_hi * G(i) - 1 + x_lo * G(i);
639 * This is _2sumF(d_hi, d_lo) inlined. The condition
640 * (d_hi == 0 || |d_hi| >= |d_lo|) for using _2sumF() is not
643 * normalized d_lo, since |d_lo| > |d_hi| implies that i is
646 * (By exhaustive testing, the worst case is d_hi = 0x1.bp-25.
651 d = d_hi + d_lo;
652 d_lo = d_hi - d + d_lo;
653 d_hi = d;
660 val_hi = d_hi;