s_floor.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. #if defined(LIBM_SCCS) && !defined(lint)
  13. static char rcsid[] = "$NetBSD: s_floor.c,v 1.8 1995/05/10 20:47:20 jtc Exp $";
  14. #endif
  15. /*
  16. * floor(x)
  17. * Return x rounded toward -inf to integral value
  18. * Method:
  19. * Bit twiddling.
  20. * Exception:
  21. * Inexact flag raised if x not equal to floor(x).
  22. */
  23. #include "math.h"
  24. #include "math_private.h"
  25. #ifdef __STDC__
  26. static const double huge = 1.0e300;
  27. #else
  28. static double huge = 1.0e300;
  29. #endif
  30. libm_hidden_proto(floor)
  31. #ifdef __STDC__
  32. double floor(double x)
  33. #else
  34. double floor(x)
  35. double x;
  36. #endif
  37. {
  38. int32_t i0,i1,j0;
  39. u_int32_t i,j;
  40. EXTRACT_WORDS(i0,i1,x);
  41. j0 = ((i0>>20)&0x7ff)-0x3ff;
  42. if(j0<20) {
  43. if(j0<0) { /* raise inexact if x != 0 */
  44. if(huge+x>0.0) {/* return 0*sign(x) if |x|<1 */
  45. if(i0>=0) {i0=i1=0;}
  46. else if(((i0&0x7fffffff)|i1)!=0)
  47. { i0=0xbff00000;i1=0;}
  48. }
  49. } else {
  50. i = (0x000fffff)>>j0;
  51. if(((i0&i)|i1)==0) return x; /* x is integral */
  52. if(huge+x>0.0) { /* raise inexact flag */
  53. if(i0<0) i0 += (0x00100000)>>j0;
  54. i0 &= (~i); i1=0;
  55. }
  56. }
  57. } else if (j0>51) {
  58. if(j0==0x400) return x+x; /* inf or NaN */
  59. else return x; /* x is integral */
  60. } else {
  61. i = ((u_int32_t)(0xffffffff))>>(j0-20);
  62. if((i1&i)==0) return x; /* x is integral */
  63. if(huge+x>0.0) { /* raise inexact flag */
  64. if(i0<0) {
  65. if(j0==20) i0+=1;
  66. else {
  67. j = i1+(1<<(52-j0));
  68. if(j<i1) i0 +=1 ; /* got a carry */
  69. i1=j;
  70. }
  71. }
  72. i1 &= (~i);
  73. }
  74. }
  75. INSERT_WORDS(x,i0,i1);
  76. return x;
  77. }
  78. libm_hidden_def(floor)