Deleted Added
full compact
e_acosf.c (176451) e_acosf.c (181062)
1/* e_acosf.c -- float version of e_acos.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
14 */
15
16#include <sys/cdefs.h>
1/* e_acosf.c -- float version of e_acos.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3 */
4
5/*
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 *
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
12 * is preserved.
13 * ====================================================
14 */
15
16#include <sys/cdefs.h>
17__FBSDID("$FreeBSD: head/lib/msun/src/e_acosf.c 176451 2008-02-22 02:30:36Z das $");
17__FBSDID("$FreeBSD: head/lib/msun/src/e_acosf.c 181062 2008-07-31 19:57:50Z das $");
18
19#include "math.h"
20#include "math_private.h"
21
22static const float
23one = 1.0000000000e+00, /* 0x3F800000 */
24pi = 3.1415925026e+00, /* 0x40490fda */
18
19#include "math.h"
20#include "math_private.h"
21
22static const float
23one = 1.0000000000e+00, /* 0x3F800000 */
24pi = 3.1415925026e+00, /* 0x40490fda */
25pio2_hi = 1.5707962513e+00, /* 0x3fc90fda */
26pio2_lo = 7.5497894159e-08, /* 0x33a22168 */
25pio2_hi = 1.5707962513e+00; /* 0x3fc90fda */
26static volatile float
27pio2_lo = 7.5497894159e-08; /* 0x33a22168 */
28static const float
27pS0 = 1.6666667163e-01, /* 0x3e2aaaab */
28pS1 = -3.2556581497e-01, /* 0xbea6b090 */
29pS2 = 2.0121252537e-01, /* 0x3e4e0aa8 */
30pS3 = -4.0055535734e-02, /* 0xbd241146 */
31pS4 = 7.9153501429e-04, /* 0x3a4f7f04 */
32pS5 = 3.4793309169e-05, /* 0x3811ef08 */
33qS1 = -2.4033949375e+00, /* 0xc019d139 */
34qS2 = 2.0209457874e+00, /* 0x4001572d */

--- 46 unchanged lines hidden ---
29pS0 = 1.6666667163e-01, /* 0x3e2aaaab */
30pS1 = -3.2556581497e-01, /* 0xbea6b090 */
31pS2 = 2.0121252537e-01, /* 0x3e4e0aa8 */
32pS3 = -4.0055535734e-02, /* 0xbd241146 */
33pS4 = 7.9153501429e-04, /* 0x3a4f7f04 */
34pS5 = 3.4793309169e-05, /* 0x3811ef08 */
35qS1 = -2.4033949375e+00, /* 0xc019d139 */
36qS2 = 2.0209457874e+00, /* 0x4001572d */

--- 46 unchanged lines hidden ---