Home | History | Annotate | Download | only in ld128

Lines Matching defs:f_hi

118 #define	F_hi(i)		(T[(i)].F_hi)
120 #define ln2_hi F_hi(TSIZE - 1)
127 float F_hi; /* log(1 / G_i) rounded (see below) */
132 * ln2_hi and each F_hi(i) are rounded to a number of bits that
133 * makes F_hi(i) + dk*ln2_hi exact for all i and all dk.
136 * and ln2_lo, to ensure that F_hi(i) and F_lo(i) cancel exactly
145 * of bits in F_hi(i) that works is very dependent on i but has
146 * a minimum of 93. We only need about 12 bits in F_hi(i) for
149 * We round F_hi(i) to 24 bits so that it can have type float,
527 * F_hi(i) with dk*ln_2_lo and dk*ln2_hi when k is -1 and i is
558 _3sumF(val_hi, val_lo, F_hi(i) + dk * ln2_hi);
566 long double f_hi, twopminusk;
585 f_hi = 1;
590 f_hi = x;
593 f_hi = x;
597 x = f_hi + f_lo;
598 f_lo = (f_hi - x) + f_lo;
666 _3sumF(val_hi, val_lo, F_hi(i) + dk * ln2_hi);