acoshl.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* origin: OpenBSD /usr/src/lib/libm/src/ld80/e_acoshl.c */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunPro, a Sun Microsystems, Inc. business.
  7. * Permission to use, copy, modify, and distribute this
  8. * software is freely granted, provided that this notice
  9. * is preserved.
  10. * ====================================================
  11. */
  12. /* acoshl(x)
  13. * Method :
  14. * Based on
  15. * acoshl(x) = logl [ x + sqrtl(x*x-1) ]
  16. * we have
  17. * acoshl(x) := logl(x)+ln2, if x is large; else
  18. * acoshl(x) := logl(2x-1/(sqrtl(x*x-1)+x)) if x>2; else
  19. * acoshl(x) := log1pl(t+sqrtl(2.0*t+t*t)); where t=x-1.
  20. *
  21. * Special cases:
  22. * acoshl(x) is NaN with signal if x<1.
  23. * acoshl(NaN) is NaN without signal.
  24. */
  25. #include "libm.h"
  26. #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
  27. long double acoshl(long double x)
  28. {
  29. return acosh(x);
  30. }
  31. #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
  32. static const long double
  33. ln2 = 6.931471805599453094287e-01L; /* 0x3FFE, 0xB17217F7, 0xD1CF79AC */
  34. long double acoshl(long double x)
  35. {
  36. long double t;
  37. uint32_t se,i0,i1;
  38. GET_LDOUBLE_WORDS(se, i0, i1, x);
  39. if (se < 0x3fff || se & 0x8000) { /* x < 1 */
  40. return (x-x)/(x-x);
  41. } else if (se >= 0x401d) { /* x > 2**30 */
  42. if (se >= 0x7fff) /* x is inf or NaN */
  43. return x+x;
  44. return logl(x) + ln2; /* acoshl(huge) = logl(2x) */
  45. } else if (((se-0x3fff)|i0|i1) == 0) {
  46. return 0.0; /* acosh(1) = 0 */
  47. } else if (se > 0x4000) { /* x > 2 */
  48. t = x*x;
  49. return logl(2.0*x - 1.0/(x + sqrtl(t - 1.0)));
  50. }
  51. /* 1 < x <= 2 */
  52. t = x - 1.0;
  53. return log1pl(t + sqrtl(2.0*t + t*t));
  54. }
  55. #endif