s_trunc.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Truncate argument to nearest integral value not larger than the argument.
  2. Copyright (C) 1997, 1998 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #include <math.h>
  18. #include "math_private.h"
  19. double
  20. trunc (double x)
  21. {
  22. int32_t i0, _j0;
  23. u_int32_t i1;
  24. int sx;
  25. EXTRACT_WORDS (i0, i1, x);
  26. sx = i0 & 0x80000000;
  27. _j0 = ((i0 >> 20) & 0x7ff) - 0x3ff;
  28. if (_j0 < 20)
  29. {
  30. if (_j0 < 0)
  31. /* The magnitude of the number is < 1 so the result is +-0. */
  32. INSERT_WORDS (x, sx, 0);
  33. else
  34. INSERT_WORDS (x, sx | (i0 & ~(0x000fffff >> _j0)), 0);
  35. }
  36. else if (_j0 > 51)
  37. {
  38. if (_j0 == 0x400)
  39. /* x is inf or NaN. */
  40. return x + x;
  41. }
  42. else
  43. {
  44. INSERT_WORDS (x, i0, i1 & ~(0xffffffffu >> (_j0 - 20)));
  45. }
  46. return x;
  47. }
  48. libm_hidden_def(trunc)