s_scalbn.c
上传用户:baixin
上传日期:2008-03-13
资源大小:4795k
文件大小:3k
开发平台:

MultiPlatform

  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. FUNCTION
  14. <<scalbn>>, <<scalbnf>>---scale by integer
  15. INDEX
  16. scalbn
  17. INDEX
  18. scalbnf
  19. ANSI_SYNOPSIS
  20. #include <math.h>
  21. double scalbn(double <[x]>, int <[y]>);
  22. float scalbnf(float <[x]>, int <[y]>);
  23. TRAD_SYNOPSIS
  24. #include <math.h>
  25. double scalbn(<[x]>,<[y]>)
  26. double <[x]>;
  27. int <[y]>;
  28. float scalbnf(<[x]>,<[y]>)
  29. float <[x]>;
  30. int <[y]>;
  31. DESCRIPTION
  32. <<scalbn>> and <<scalbnf>> scale <[x]> by <[n]>, returning <[x]> times
  33. 2 to the power <[n]>.  The result is computed by manipulating the
  34. exponent, rather than by actually performing an exponentiation or
  35. multiplication.
  36. RETURNS
  37. <[x]> times 2 to the power <[n]>.
  38. PORTABILITY
  39. Neither <<scalbn>> nor <<scalbnf>> is required by ANSI C or by the System V
  40. Interface Definition (Issue 2).
  41. */
  42. /* 
  43.  * scalbn (double x, int n)
  44.  * scalbn(x,n) returns x* 2**n  computed by  exponent  
  45.  * manipulation rather than by actually performing an 
  46.  * exponentiation or a multiplication.
  47.  */
  48. #include "fdlibm.h"
  49. #ifndef _DOUBLE_IS_32BITS
  50. #ifdef __STDC__
  51. static const double
  52. #else
  53. static double
  54. #endif
  55. two54   =  1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
  56. twom54  =  5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
  57. huge   = 1.0e+300,
  58. tiny   = 1.0e-300;
  59. #ifdef __STDC__
  60. double scalbn (double x, int n)
  61. #else
  62. double scalbn (x,n)
  63. double x; int n;
  64. #endif
  65. {
  66. __int32_t  k,hx,lx;
  67. EXTRACT_WORDS(hx,lx,x);
  68.         k = (hx&0x7ff00000)>>20; /* extract exponent */
  69.         if (k==0) { /* 0 or subnormal x */
  70.             if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
  71.     x *= two54; 
  72.     GET_HIGH_WORD(hx,x);
  73.     k = ((hx&0x7ff00000)>>20) - 54; 
  74.             if (n< -50000) return tiny*x;  /*underflow*/
  75.     }
  76.         if (k==0x7ff) return x+x; /* NaN or Inf */
  77.         k = k+n; 
  78.         if (k >  0x7fe) return huge*copysign(huge,x); /* overflow  */
  79.         if (k > 0)  /* normal result */
  80.     {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
  81.         if (k <= -54)
  82.             if (n > 50000)  /* in case integer overflow in n+k */
  83. return huge*copysign(huge,x); /*overflow*/
  84.     else return tiny*copysign(tiny,x);  /*underflow*/
  85.         k += 54; /* subnormal result */
  86. SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
  87.         return x*twom54;
  88. }
  89. #endif /* _DOUBLE_IS_32BITS */