| * This file has no copyright assigned and is placed in the Public Domain. |
| * This file is part of the w64 mingw-runtime package. |
| * No warranty is given; refer to the file DISCLAIMER within this package. |
| /* acosh(x) = log (x + sqrt(x * x - 1)) */ |
| long double acoshl (long double x) |
| /* Avoid overflow (and unnecessary calculation when |
| The M_LN2 define doesn't have enough precison for |
| long double so use this one. GCC optimizes by replacing |
| the const with a fldln2 insn. */ |
| return __fast_logl (x) + 6.9314718055994530941723E-1L; |
| /* Since x >= 1, the arg to log will always be greater than |
| the fyl2xp1 limit (approx 0.29) so just use logl. */ |
| return __fast_logl (x + __fast_sqrtl((x + 1.0L) * (x - 1.0L))); |