s_scalbln.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* @(#)s_scalbn.c 5.1 93/09/24 */
  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. /*
  13. * scalbn (double x, int n)
  14. * scalbn(x,n) returns x* 2**n computed by exponent
  15. * manipulation rather than by actually performing an
  16. * exponentiation or a multiplication.
  17. */
  18. #include "math.h"
  19. #include "math_private.h"
  20. #ifdef __STDC__
  21. static const double
  22. #else
  23. static double
  24. #endif
  25. two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  26. twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  27. huge = 1.0e+300,
  28. tiny = 1.0e-300;
  29. #ifdef __STDC__
  30. double scalbln (double x, long int n)
  31. #else
  32. double scalbln (x,n)
  33. double x; long int n;
  34. #endif
  35. {
  36. int32_t k,hx,lx;
  37. EXTRACT_WORDS(hx,lx,x);
  38. k = (hx&0x7ff00000)>>20; /* extract exponent */
  39. if (k==0) { /* 0 or subnormal x */
  40. if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
  41. x *= two54;
  42. GET_HIGH_WORD(hx,x);
  43. k = ((hx&0x7ff00000)>>20) - 54;
  44. }
  45. if (k==0x7ff) return x+x; /* NaN or Inf */
  46. k = k+n;
  47. if (n> 50000 || k > 0x7fe)
  48. return huge*copysign(huge,x); /* overflow */
  49. if (n< -50000) return tiny*copysign(tiny,x); /*underflow*/
  50. if (k > 0) /* normal result */
  51. {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  52. if (k <= -54)
  53. return tiny*copysign(tiny,x); /*underflow*/
  54. k += 54; /* subnormal result */
  55. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  56. return x*twom54;
  57. }
  58. libm_hidden_def(scalbln)