scalb.c 895 B

12345678910111213141516171819202122232425262728293031323334
  1. /* origin: FreeBSD /usr/src/lib/msun/src/e_scalb.c */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  6. * Developed at SunSoft, 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. * scalb(x, fn) is provide for
  14. * passing various standard test suite. One
  15. * should use scalbn() instead.
  16. */
  17. #include <math.h>
  18. double scalb(double x, double fn)
  19. {
  20. if (isnan(x) || isnan(fn))
  21. return x*fn;
  22. if (!isfinite(fn)) {
  23. if (fn > 0.0)
  24. return x*fn;
  25. else
  26. return x/(-fn);
  27. }
  28. if (rint(fn) != fn) return (fn-fn)/(fn-fn);
  29. if ( fn > 65000.0) return scalbn(x, 65000);
  30. if (-fn > 65000.0) return scalbn(x,-65000);
  31. return scalbn(x,(int)fn);
  32. }