s_frexp.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* @(#)s_frexp.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. #include "cdefs-compat.h"
  13. //__FBSDID("$FreeBSD: src/lib/msun/src/s_frexp.c,v 1.11 2008/02/22 02:30:35 das Exp $");
  14. /*
  15. * for non-zero x
  16. * x = frexp(arg,&exp);
  17. * return a double fp quantity x such that 0.5 <= |x| <1.0
  18. * and the corresponding binary exponent "exp". That is
  19. * arg = x*2^exp.
  20. * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
  21. * with *exp=0.
  22. */
  23. #include <float.h>
  24. #include <openlibm_math.h>
  25. #include "math_private.h"
  26. static const double
  27. two54 = 1.80143985094819840000e+16; /* 0x43500000, 0x00000000 */
  28. OLM_DLLEXPORT double
  29. frexp(double x, int *eptr)
  30. {
  31. int32_t hx, ix, lx;
  32. EXTRACT_WORDS(hx,lx,x);
  33. ix = 0x7fffffff&hx;
  34. *eptr = 0;
  35. if(ix>=0x7ff00000||((ix|lx)==0)) return x; /* 0,inf,nan */
  36. if (ix<0x00100000) { /* subnormal */
  37. x *= two54;
  38. GET_HIGH_WORD(hx,x);
  39. ix = hx&0x7fffffff;
  40. *eptr = -54;
  41. }
  42. *eptr += (ix>>20)-1022;
  43. hx = (hx&0x800fffff)|0x3fe00000;
  44. SET_HIGH_WORD(x,hx);
  45. return x;
  46. }
  47. #if (LDBL_MANT_DIG == 53)
  48. __weak_reference(frexp, frexpl);
  49. #endif