Lines Matching defs:f_lo
119 #define F_lo(i) (T[(i)].F_lo)
121 #define ln2_lo F_lo(TSIZE - 1)
129 long double F_lo; /* next 113 bits for log(1 / G_i) */
136 * and ln2_lo, to ensure that F_hi(i) and F_lo(i) cancel exactly
526 * Our algorithm depends on exact cancellation of F_lo(i) and
551 dd * P14))))))))))) + (F_lo(i) + dk * ln2_lo) + d * d * P2;
565 long double d, d_hi, f_lo, val_hi, val_lo;
586 f_lo = x;
591 f_lo = 1;
594 f_lo = 0; /* avoid underflow of the P3 term */
597 x = f_hi + f_lo;
598 f_lo = (f_hi - x) + f_lo;
609 f_lo *= twopminusk;
616 * (x+f_lo)*G(i)-1 and extra precision is needed for that.
619 * f_lo*G(i) is good enough.
636 d_lo = f_lo * G(i);
659 dd * P14))))))))))) + (F_lo(i) + dk * ln2_lo + d_lo) + d * d * P2;