s_trunc.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* @(#)s_floor.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_trunc.c,v 1.4 2008/02/22 02:27:34 das Exp $");
  14. /*
  15. * trunc(x)
  16. * Return x rounded toward 0 to integral value
  17. * Method:
  18. * Bit twiddling.
  19. * Exception:
  20. * Inexact flag raised if x not equal to trunc(x).
  21. */
  22. #include <float.h>
  23. #include <openlibm_math.h>
  24. #include "math_private.h"
  25. static const double huge = 1.0e300;
  26. OLM_DLLEXPORT double
  27. trunc(double x)
  28. {
  29. int32_t i0,i1,j0;
  30. u_int32_t i;
  31. EXTRACT_WORDS(i0,i1,x);
  32. j0 = ((i0>>20)&0x7ff)-0x3ff;
  33. if(j0<20) {
  34. if(j0<0) { /* raise inexact if x != 0 */
  35. if(huge+x>0.0) {/* |x|<1, so return 0*sign(x) */
  36. i0 &= 0x80000000U;
  37. i1 = 0;
  38. }
  39. } else {
  40. i = (0x000fffff)>>j0;
  41. if(((i0&i)|i1)==0) return x; /* x is integral */
  42. if(huge+x>0.0) { /* raise inexact flag */
  43. i0 &= (~i); i1=0;
  44. }
  45. }
  46. } else if (j0>51) {
  47. if(j0==0x400) return x+x; /* inf or NaN */
  48. else return x; /* x is integral */
  49. } else {
  50. i = ((u_int32_t)(0xffffffff))>>(j0-20);
  51. if((i1&i)==0) return x; /* x is integral */
  52. if(huge+x>0.0) /* raise inexact flag */
  53. i1 &= (~i);
  54. }
  55. INSERT_WORDS(x,i0,i1);
  56. return x;
  57. }
  58. #if LDBL_MANT_DIG == 53
  59. __weak_reference(trunc, truncl);
  60. #endif