/* origin: FreeBSD /usr/src/lib/msun/src/s_cos.c */1/*2* ====================================================3* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.4*5* Developed at SunPro, a Sun Microsystems, Inc. business.6* Permission to use, copy, modify, and distribute this7* software is freely granted, provided that this notice8* is preserved.9* ====================================================10*/11/* cos(x)12* Return cosine function of x.13*14* kernel function:15* __sin ... sine function on [-pi/4,pi/4]16* __cos ... cosine function on [-pi/4,pi/4]17* __rem_pio2 ... argument reduction routine18*19* Method.20* Let S,C and T denote the sin, cos and tan respectively on21* [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/222* in [-pi/4 , +pi/4], and let n = k mod 4.23* We have24*25* n sin(x) cos(x) tan(x)26* ----------------------------------------------------------27* 0 S C T28* 1 C -S -1/T29* 2 -S -C T30* 3 -C S -1/T31* ----------------------------------------------------------32*33* Special cases:34* Let trig be any of sin, cos, or tan.35* trig(+-INF) is NaN, with signals;36* trig(NaN) is that NaN;37*38* Accuracy:39* TRIG(x) returns trig(x) nearly rounded40*/4142#include "libm.h"4344double __cdecl cos(double x)45{46double y[2];47uint32_t ix;48unsigned n;4950GET_HIGH_WORD(ix, x);51ix &= 0x7fffffff;5253/* |x| ~< pi/4 */54if (ix <= 0x3fe921fb) {55if (ix < 0x3e46a09e) { /* |x| < 2**-27 * sqrt(2) */56/* raise inexact if x!=0 */57FORCE_EVAL(x + 0x1p120f);58return 1.0;59}60return __cos(x, 0);61}6263/* cos(Inf or NaN) is NaN */64if (isinf(x))65return math_error(_DOMAIN, "cos", x, 0, x - x);66if (ix >= 0x7ff00000)67return x-x;6869/* argument reduction */70n = __rem_pio2(x, y);71switch (n&3) {72case 0: return __cos(y[0], y[1]);73case 1: return -__sin(y[0], y[1], 1);74case 2: return -__cos(y[0], y[1]);75default:76return __sin(y[0], y[1], 1);77}78}798081