12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #include <openlibm_math.h>
- #include "math_private.h"
- static const long double
- one = 1.0,
- ln2 = 0.6931471805599453094172321214581766L;
- long double
- acoshl(long double x)
- {
- long double t;
- u_int64_t lx;
- int64_t hx;
- GET_LDOUBLE_WORDS64(hx,lx,x);
- if(hx<0x3fff000000000000LL) {
- return (x-x)/(x-x);
- } else if(hx >=0x4035000000000000LL) {
- if(hx >=0x7fff000000000000LL) {
- return x+x;
- } else
- return logl(x)+ln2;
- } else if(((hx-0x3fff000000000000LL)|lx)==0) {
- return 0.0L;
- } else if (hx > 0x4000000000000000LL) {
- t=x*x;
- return logl(2.0L*x-one/(x+sqrtl(t-one)));
- } else {
- t = x-one;
- return log1pl(t+sqrtl(2.0L*t+t*t));
- }
- }
|