Lines Matching +full:high +full:- +full:accuracy
16 * __kernel_sin ... sine function on [-pi/4,pi/4]
17 * __kernel_cos ... cose function on [-pi/4,pi/4]
22 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
23 * in [-pi/4 , +pi/4], and let n = k mod 4.
27 * ----------------------------------------------------------
29 * 1 C -S -1/T
30 * 2 -S -C T
31 * 3 -C S -1/T
32 * ----------------------------------------------------------
36 * trig(+-INF) is NaN, with signals;
39 * Accuracy:
56 /* High word of x. */ in sin()
62 if(ix<0x3e500000) /* |x| < 2**-26 */ in sin()
68 else if (ix>=0x7ff00000) return x-x; in sin()
76 case 2: return -__kernel_sin(y[0],y[1],1); in sin()
78 return -__kernel_cos(y[0],y[1]); in sin()