-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathe_acoshf.c
67 lines (57 loc) · 1.64 KB
/
e_acoshf.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* e_acoshf.c -- float version of e_acosh.c.
* Conversion to float by Ian Lance Taylor, Cygnus Support, [email protected].
*/
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
#ifndef __FDLIBM_H__
#include "fdlibm.h"
#endif
#ifndef __have_fpu_acosh
float __ieee754_acoshf(float x)
{
float t;
int32_t hx;
static const float one = 1.0;
static const float ln2 = 6.9314718246e-01; /* 0x3f317218 */
GET_FLOAT_WORD(hx, x);
if (hx < IC(0x3f800000))
{ /* x < 1 */
return (x - x) / (x - x);
} else if (hx >= IC(0x4d800000))
{ /* x > 2**28 */
if (!FLT_UWORD_IS_FINITE(hx))
{ /* x is inf of NaN */
return x + x;
}
return __ieee754_logf(x) + ln2; /* acosh(huge)=log(2x) */
} else if (hx == IC(0x3f800000))
{
return 0.0f; /* acosh(1) = 0 */
} else if (hx > IC(0x40000000))
{ /* 2**28 > x > 2 */
t = x * x;
return __ieee754_logf(2.0F * x - one / (x + __ieee754_sqrtf(t - one)));
} else
{ /* 1<x<2 */
t = x - one;
return __ieee754_log1pf(t + __ieee754_sqrtf(2.0F * t + t * t));
}
}
#endif
/* wrapper acoshf */
float __acoshf(float x)
{
if (isless(x, 1.0f) && _LIB_VERSION != _IEEE_)
/* acosh(x<1) */
return __kernel_standard_f(x, x, __builtin_nanf(""), KMATHERRF_ACOSH);
return __ieee754_acoshf(x);
}
__typeof(__acoshf) acoshf __attribute__((weak, alias("__acoshf")));