IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
s_tan.cs
Go to the documentation of this file.
1/*
2 * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26/* tan(x)
27 * Return tangent function of x.
28 *
29 * kernel function:
30 * __kernel_tan ... tangent function on [-pi/4,pi/4]
31 * __ieee754_rem_pio2 ... argument reduction routine
32 *
33 * Method.
34 * Let S,C and T denote the sin, cos and tan respectively on
35 * [-PI/4, +PI/4]. Reduce the argument x to y1+y2 = x-k*pi/2
36 * in [-pi/4 , +pi/4], and let n = k mod 4.
37 * We have
38 *
39 * n sin(x) cos(x) tan(x)
40 * ----------------------------------------------------------
41 * 0 S C T
42 * 1 C -S -1/T
43 * 2 -S -C T
44 * 3 -C S -1/T
45 * ----------------------------------------------------------
46 *
47 * Special cases:
48 * Let trig be any of sin, cos, or tan.
49 * trig(+-INF) is NaN, with signals;
50 * trig(NaN) is that NaN;
51 *
52 * Accuracy:
53 * TRIG(x) returns trig(x) nearly rounded
54 */
55
57{
58 static partial class fdlibm
59 {
60 internal static double tan(double x)
61 {
62 double z = 0.0;
63 int n, ix;
64
65 /* High word of x. */
66 ix = __HI(x);
67
68 /* |x| ~< pi/4 */
69 ix &= 0x7fffffff;
70 if (ix <= 0x3fe921fb) return __kernel_tan(x, z, 1);
71
72 /* tan(Inf or NaN) is NaN */
73 else if (ix >= 0x7ff00000) return x - x; /* NaN */
74
75 /* argument reduction needed */
76 else
77 {
78 double y_0_ = 0.0, y_1_ = 0.0;
79 n = __ieee754_rem_pio2(x, ref y_0_, ref y_1_);
80 return __kernel_tan(y_0_, y_1_, 1 - ((n & 1) << 1)); /* 1 -- n even
81 -1 -- n odd */
82 }
83 }
84 }
85}