Searched refs:dp_h (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A De_pow.c66 dp_h[] = { 0.0, 5.84962487220764160156e-01,}, /* 0x3FE2B803, 0x40000000 */ variable
253 /* log2(ax) = (ss+..)*2/(3*log2) = n + dp_h + z_h + z_l */
255 t1 = (((z_h+z_l)+dp_h[k])+t);
257 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
H A De_powf.c24 dp_h[] = { 0.0, 5.84960938e-01,}, /* 0x3f15c000 */ variable
197 /* log2(ax) = (s+..)*2/(3*log2) = n + dp_h + z_h + z_l */
199 t1 = (((z_h+z_l)+dp_h[k])+t);
202 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
/freebsd-11-stable/lib/msun/ld128/
H A De_powl.c76 static const long double dp_h[] = { variable
356 /* log2(ax) = (s+..)*2/(3*log2) = n + dp_h + z_h + z_l */
358 t1 = (((z_h + z_l) + dp_h[k]) + t);
363 t2 = z_l - (((t1 - t) - dp_h[k]) - z_h);

Completed in 118 milliseconds