s_modff.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* s_modff.c -- float version of s_modf.c.
  2. * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
  3. */
  4. /*
  5. * ====================================================
  6. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  7. *
  8. * Developed at SunPro, a Sun Microsystems, Inc. business.
  9. * Permission to use, copy, modify, and distribute this
  10. * software is freely granted, provided that this notice
  11. * is preserved.
  12. * ====================================================
  13. */
  14. #include "cdefs-compat.h"
  15. //__FBSDID("$FreeBSD: src/lib/msun/src/s_modff.c,v 1.9 2008/02/22 02:30:35 das Exp $");
  16. #include <openlibm_math.h>
  17. #include "math_private.h"
  18. static const float one = 1.0;
  19. OLM_DLLEXPORT float
  20. modff(float x, float *iptr)
  21. {
  22. int32_t i0,j0;
  23. u_int32_t i;
  24. GET_FLOAT_WORD(i0,x);
  25. j0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
  26. if(j0<23) { /* integer part in x */
  27. if(j0<0) { /* |x|<1 */
  28. SET_FLOAT_WORD(*iptr,i0&0x80000000); /* *iptr = +-0 */
  29. return x;
  30. } else {
  31. i = (0x007fffff)>>j0;
  32. if((i0&i)==0) { /* x is integral */
  33. u_int32_t ix;
  34. *iptr = x;
  35. GET_FLOAT_WORD(ix,x);
  36. SET_FLOAT_WORD(x,ix&0x80000000); /* return +-0 */
  37. return x;
  38. } else {
  39. SET_FLOAT_WORD(*iptr,i0&(~i));
  40. return x - *iptr;
  41. }
  42. }
  43. } else { /* no fraction part */
  44. u_int32_t ix;
  45. *iptr = x*one;
  46. if (x != x) /* NaN */
  47. return x;
  48. GET_FLOAT_WORD(ix,x);
  49. SET_FLOAT_WORD(x,ix&0x80000000); /* return +-0 */
  50. return x;
  51. }
  52. }