s_nextafter.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /* @(#)s_nextafter.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_nextafter.c,v 1.8 1995/05/10 20:47:58 jtc Exp $";
  14. #endif
  15. /* IEEE functions
  16. * nextafter(x,y)
  17. * return the next machine floating-point number of x in the
  18. * direction toward y.
  19. * Special cases:
  20. */
  21. #include "math.h"
  22. #include "math_private.h"
  23. #ifdef __STDC__
  24. double nextafter(double x, double y)
  25. #else
  26. double nextafter(x,y)
  27. double x,y;
  28. #endif
  29. {
  30. int32_t hx,hy,ix,iy;
  31. u_int32_t lx,ly;
  32. EXTRACT_WORDS(hx,lx,x);
  33. EXTRACT_WORDS(hy,ly,y);
  34. ix = hx&0x7fffffff; /* |x| */
  35. iy = hy&0x7fffffff; /* |y| */
  36. if(((ix>=0x7ff00000)&&((ix-0x7ff00000)|lx)!=0) || /* x is nan */
  37. ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0)) /* y is nan */
  38. return x+y;
  39. if(x==y) return x; /* x=y, return x */
  40. if((ix|lx)==0) { /* x == 0 */
  41. INSERT_WORDS(x,hy&0x80000000,1); /* return +-minsubnormal */
  42. y = x*x;
  43. if(y==x) return y; else return x; /* raise underflow flag */
  44. }
  45. if(hx>=0) { /* x > 0 */
  46. if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
  47. if(lx==0) hx -= 1;
  48. lx -= 1;
  49. } else { /* x < y, x += ulp */
  50. lx += 1;
  51. if(lx==0) hx += 1;
  52. }
  53. } else { /* x < 0 */
  54. if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
  55. if(lx==0) hx -= 1;
  56. lx -= 1;
  57. } else { /* x > y, x += ulp */
  58. lx += 1;
  59. if(lx==0) hx += 1;
  60. }
  61. }
  62. hy = hx&0x7ff00000;
  63. if(hy>=0x7ff00000) return x+x; /* overflow */
  64. if(hy<0x00100000) { /* underflow */
  65. y = x*x;
  66. if(y!=x) { /* raise underflow flag */
  67. INSERT_WORDS(y,hx,lx);
  68. return y;
  69. }
  70. }
  71. INSERT_WORDS(x,hx,lx);
  72. return x;
  73. }