123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #if defined(LIBM_SCCS) && !defined(lint)
- static char rcsid[] = "$NetBSD: e_acos.c,v 1.9 1995/05/12 04:57:13 jtc Exp $";
- #endif
- #include "math.h"
- #include "math_private.h"
- #ifdef __STDC__
- static const double
- #else
- static double
- #endif
- one= 1.00000000000000000000e+00,
- pi = 3.14159265358979311600e+00,
- pio2_hi = 1.57079632679489655800e+00,
- pio2_lo = 6.12323399573676603587e-17,
- pS0 = 1.66666666666666657415e-01,
- pS1 = -3.25565818622400915405e-01,
- pS2 = 2.01212532134862925881e-01,
- pS3 = -4.00555345006794114027e-02,
- pS4 = 7.91534994289814532176e-04,
- pS5 = 3.47933107596021167570e-05,
- qS1 = -2.40339491173441421878e+00,
- qS2 = 2.02094576023350569471e+00,
- qS3 = -6.88283971605453293030e-01,
- qS4 = 7.70381505559019352791e-02;
- #ifdef __STDC__
- double __ieee754_acos(double x)
- #else
- double __ieee754_acos(x)
- double x;
- #endif
- {
- double z,p,q,r,w,s,c,df;
- int32_t hx,ix;
- GET_HIGH_WORD(hx,x);
- ix = hx&0x7fffffff;
- if(ix>=0x3ff00000) {
- u_int32_t lx;
- GET_LOW_WORD(lx,x);
- if(((ix-0x3ff00000)|lx)==0) {
- if(hx>0) return 0.0;
- else return pi+2.0*pio2_lo;
- }
- return (x-x)/(x-x);
- }
- if(ix<0x3fe00000) {
- if(ix<=0x3c600000) return pio2_hi+pio2_lo;
- z = x*x;
- p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
- q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
- r = p/q;
- return pio2_hi - (x - (pio2_lo-x*r));
- } else if (hx<0) {
- z = (one+x)*0.5;
- p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
- q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
- s = __ieee754_sqrt(z);
- r = p/q;
- w = r*s-pio2_lo;
- return pi - 2.0*(s+w);
- } else {
- z = (one-x)*0.5;
- s = __ieee754_sqrt(z);
- df = s;
- SET_LOW_WORD(df,0);
- c = (z-df*df)/(s+df);
- p = z*(pS0+z*(pS1+z*(pS2+z*(pS3+z*(pS4+z*pS5)))));
- q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
- r = p/q;
- w = r*s+c;
- return 2.0*(df+w);
- }
- }
|