/src/lib/libm/src/ |
e_acos.c | 48 pio2_hi = 1.57079632679489655800e+00, /* 0x3FF921FB, 0x54442D18 */ variable in typeref:typename:const double 78 if(ix<=0x3c600000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/ 83 return pio2_hi - (x - (pio2_lo-x*r));
|
e_acosf.c | 27 pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */ variable in typeref:typename:const float 54 if(ix<=0x23000000) return pio2_hi+pio2_lo;/*if|x|<2**-57*/ 59 return pio2_hi - (x - (pio2_lo-x*r));
|
e_asin.c | 30 * Let y = (1-x), z = y/2, s := sqrt(z), and pio2_hi+pio2_lo=pi/2; 33 * = pio2_hi - (2*(s+s*z*R(z)) - pio2_lo) 34 * For x<=0.98, let pio4_hi = pio2_hi/2, then 55 pio2_hi = 1.57079632679489655800e+00, /* 0x3FF921FB, 0x54442D18 */ variable in typeref:typename:const double 84 return x*pio2_hi+x*pio2_lo; 105 t = pio2_hi-(2.0*(s+s*w)-pio2_lo);
|
e_asinf.c | 27 pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */ variable in typeref:typename:const float 53 return x*pio2_hi+x*pio2_lo; 75 t = pio2_hi-((float)2.0*(s+s*w)-pio2_lo);
|
/src/lib/libm/ld128/ |
invtrig.h | 69 #define pio2_hi atanhi[3] macro
|
/src/lib/libm/ld80/ |
invtrig.h | 65 #define pio2_hi atanhi[3] macro
|
/src/lib/libm/complex/ |
catrigl.c | 114 pio2_hi = 1.5707963267948966192313216916397514L, /* pi/2 */ variable in typeref:typename:const long double 263 if (x == 0) return (CMPLXL(pio2_hi + pio2_lo, y+y)); 282 return (CMPLXL(pio2_hi - (x - pio2_lo), -y)); 399 return (CMPLXL(copysignl(0, x), copysignl(pio2_hi + pio2_lo, y))); 404 return (CMPLXL(real_part_reciprocal(x, y), copysignl(pio2_hi + pio2_lo, y)));
|