Searched refs:ln2_hi (Results 1 - 6 of 6) sorted by relevance

/bionic/libm/src/
H A De_log.c48 * = k*ln2_hi+(f-(hfsq-(s*(hfsq+R)+k*ln2_lo)))
50 * ln2_hi + ln2_lo,
51 * where n*ln2_hi is always exact for |n| < 2000.
73 ln2_hi = 6.93147180369123816490e-01, /* 3fe62e42 fee00000 */ variable
112 return dk*ln2_hi+dk*ln2_lo;}
115 return dk*ln2_hi-((R-dk*ln2_lo)-f);}
130 return dk*ln2_hi-((hfsq-(s*(hfsq+R)+dk*ln2_lo))-f);
133 return dk*ln2_hi-((s*(f-R)-dk*ln2_lo)-f);
H A De_logf.c24 ln2_hi = 6.9313812256e-01, /* 0x3f317180 */ variable
60 return dk*ln2_hi+dk*ln2_lo;}
63 return dk*ln2_hi-((R-dk*ln2_lo)-f);}
78 return dk*ln2_hi-((hfsq-(s*(hfsq+R)+dk*ln2_lo))-f);
81 return dk*ln2_hi-((s*(f-R)-dk*ln2_lo)-f);
H A Ds_log1p.c52 * = k*ln2_hi+(f-(hfsq-(s*(hfsq+R)+k*ln2_lo)))
54 * ln2_hi + ln2_lo,
55 * where n*ln2_hi is always exact for |n| < 2000.
86 ln2_hi = 6.93147180369123816490e-01, /* 3fe62e42 fee00000 */ variable
158 else {c += k*ln2_lo; return k*ln2_hi+c;}
161 return k*ln2_hi-((R-(k*ln2_lo+c))-f);
167 return k*ln2_hi-((hfsq-(s*(hfsq+R)+(k*ln2_lo+c)))-f);
H A Ds_log1pf.c24 ln2_hi = 6.9313812256e-01, /* 0x3f317180 */ variable
97 else {c += k*ln2_lo; return k*ln2_hi+c;}
100 return k*ln2_hi-((R-(k*ln2_lo+c))-f);
106 return k*ln2_hi-((hfsq-(s*(hfsq+R)+(k*ln2_lo+c)))-f);
H A Ds_expm1.c120 ln2_hi = 6.93147180369123816490e-01,/* 0x3fe62e42, 0xfee00000 */ variable
164 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
166 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
170 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */
H A Ds_expm1f.c28 ln2_hi = 6.9313812256e-01,/* 0x3f317180 */ variable
69 {hi = x - ln2_hi; lo = ln2_lo; k = 1;}
71 {hi = x + ln2_hi; lo = -ln2_lo; k = -1;}
75 hi = x - t*ln2_hi; /* t*ln2_hi is exact here */

Completed in 41 milliseconds