Searched defs:w_l (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dtgamma.c1216 double u2, ss_h, ss_l, r_h, w_h, w_l, t4; local
1289 w_l = z * (GP0 + t1) + w;
1290 k = (int) ((w_h + w_l) * invln2_32 + half);
1292 /* compute the exponential of w_h+w_l */
1297 /* perform w - k*ln2_32 (represent as w_h - w_l) */
1300 w = w_l - t2;
1301 w_h = t1 + w_l;
1302 w_l = t2 - (w_l - (w_h - t1));
1304 /* compute exp(w_h+w_l) */
[all...]
H A Dtgammal.c631 long double u2, ss_h, ss_l, r_h, w_h, w_l, t4; local
703 w_l = z * (GP[0] + z2 * t1) + w;
704 k = (int) ((w_h + w_l) * invln2_32 + half);
706 /* compute the exponential of w_h+w_l */
712 /* perform w - k*ln2_32 (represent as w_h - w_l) */
715 w = t2 - w_l;
717 w_l = w - (t1 - w_h);
719 /* compute exp(w_h-w_l) */
720 z = w_h - w_l;
723 t3 = w_h - (w_l
[all...]

Completed in 79 milliseconds