Home | Sort by: relevance | last modified time | path |
/src/lib/libm/src/ | |
s_frexpf.c | 25 two25 = 3.3554432000e+07; /* 0x4c000000 */ variable in typeref:typename:const float 36 x *= two25; |
e_log10f.c | 25 two25 = 3.3554432000e+07, /* 0x4c000000 */ variable in typeref:typename:const float 43 return -two25/zero; /* log(+-0)=-inf */ 45 k -= 25; x *= two25; /* subnormal number, scale up x */ |
e_log2f.c | 26 two25 = 3.355443200e+07, /* 0x4c000000 */ variable in typeref:typename:const float 48 return -two25/zero; /* log(+-0)=-inf */ 50 k -= 25; x *= two25; /* subnormal number, scale up x */ |
e_logf.c | 27 two25 = 3.355443200e+07, /* 0x4c000000 */ variable in typeref:typename:const float 49 return -two25/zero; /* log(+-0)=-inf */ 51 k -= 25; x *= two25; /* subnormal number, scale up x */ |
s_log1pf.c | 29 two25 = 3.355443200e+07, /* 0x4c000000 */ variable in typeref:typename:const float 55 if(x==(float)-1.0) return -two25/zero; /* log1p(-1)=+inf */ 59 if(two25+x>zero /* raise inexact */ |