Searched refs:two25 (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/lib/msun/src/
H A Ds_logbf.c23 two25 = 3.355443200e+07; /* 0x4c000000 */ variable
34 x *= two25; /* convert subnormal x to normal */
H A Ds_frexpf.c23 two25 = 3.3554432000e+07; /* 0x4c000000 */ variable
34 x *= two25;
H A Ds_scalbnf.c23 two25 = 3.355443200e+07, /* 0x4c000000 */ variable
36 x *= two25;
H A De_log10f.c24 two25 = 3.3554432000e+07, /* 0x4c000000 */ variable
44 return -two25/vzero; /* log(+-0)=-inf */
46 k -= 25; x *= two25; /* subnormal number, scale up x */
H A De_log2f.c24 two25 = 3.3554432000e+07, /* 0x4c000000 */ variable
42 return -two25/vzero; /* log(+-0)=-inf */
44 k -= 25; x *= two25; /* subnormal number, scale up x */
H A De_logf.c25 two25 = 3.355443200e+07, /* 0x4c000000 */ variable
46 return -two25/vzero; /* log(+-0)=-inf */
48 k -= 25; x *= two25; /* subnormal number, scale up x */
H A Ds_log1pf.c27 two25 = 3.355443200e+07, /* 0x4c000000 */ variable
51 if(x==(float)-1.0) return -two25/vzero; /* log1p(-1)=+inf */
55 if(two25+x>zero /* raise inexact */

Completed in 134 milliseconds