Imported Upstream version 2.9.0
[debian/cc1111] / device / lib / pic / libm / asincosf.c
1 /*  asincosf.c: Computes asin or acos of a 32-bit float as outlined in [1]
2
3     Copyright (C) 2001, 2002  Jesus Calvino-Fraga, jesusc@ieee.org 
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Lesser General Public
7     License as published by the Free Software Foundation; either
8     version 2.1 of the License, or (at your option) any later version.
9
10     This library is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13     Lesser General Public License for more details.
14
15     You should have received a copy of the GNU Lesser General Public
16     License along with this library; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA */
18
19 /* [1] William James Cody and W.  M.  Waite.  _Software manual for the
20    elementary functions_, Englewood Cliffs, N.J.:Prentice-Hall, 1980. */
21
22 /* Version 1.0 - Initial release */
23
24 /*
25 ** $Id: asincosf.c 4776 2007-04-29 13:15:51Z borutr $
26 */
27
28
29 #include <math.h>
30 #include <errno.h>
31
32 #define P1  0.933935835E+0
33 #define P2 -0.504400557E+0
34 #define Q0  0.560363004E+1
35 #define Q1 -0.554846723E+1
36 #define Q2  0.100000000E+1
37
38 #define P(g) (P2*g+P1)
39 #define Q(g) ((Q2*g+Q1)*g+Q0)
40
41 float asincosf(const float x, const int isacos)
42 {
43     float y, g, r;
44     int i;
45
46     static const float a[2]={ 0.0, QUART_PI };
47     static const float b[2]={ HALF_PI, QUART_PI };
48
49     y=fabsf(x);
50     i=isacos;
51     if (y < EPS) r=y;
52     else
53     {
54         if (y > 0.5)
55         {
56             i=1-i;
57             if (y > 1.0)
58             {
59                 errno=EDOM;
60                 return 0.0;
61             }
62             g=(0.5-y)+0.5;
63             g=ldexpf(g,-1);
64             y=sqrtf(g);
65             y=-(y+y);
66         }
67         else
68         {
69             g=y*y;
70         }
71         r=y+y*((P(g)*g)/Q(g));
72     }
73     if (isacos)
74     {
75         if (x < 0.0)
76             r=(b[i]+r)+b[i];
77         else
78             r=(a[i]-r)+a[i];
79     }
80     else
81     {
82         r=(a[i]+r)+a[i];
83         if (x<0.0) r=-r;
84     }
85     return r;
86 }