Searched refs:hy (Results 1 – 2 of 2) sorted by relevance
/math/ |
A D | s_nextafter.c | 37 int32_t hx,hy,ix,iy; in __nextafter() local 41 EXTRACT_WORDS(hy,ly,y); in __nextafter() 43 iy = hy&0x7fffffff; /* |y| */ in __nextafter() 51 INSERT_WORDS(x,hy&0x80000000,1); /* return +-minsubnormal */ in __nextafter() 58 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */ in __nextafter() 66 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */ in __nextafter() 74 hy = hx&0x7ff00000; in __nextafter() 75 if(hy>=0x7ff00000) { in __nextafter() 80 if(hy<0x00100000) { in __nextafter()
|
A D | s_nexttowardf.c | 31 int32_t hx,hy,ix,iy; in __nexttowardf() local 35 EXTRACT_WORDS(hy,ly,y); in __nexttowardf() 37 iy = hy&0x7fffffff; /* |y| */ in __nexttowardf() 45 SET_FLOAT_WORD(x,(uint32_t)(hy&0x80000000)|1);/* return +-minsub*/ in __nexttowardf() 62 hy = hx&0x7f800000; in __nexttowardf() 63 if(hy>=0x7f800000) { in __nexttowardf() 68 if(hy<0x00800000) { in __nexttowardf()
|
Completed in 4 milliseconds