Home | History | Annotate | Download | only in src

Lines Matching defs:hy

32 	int32_t n,hx,hy,hz,ix,iy,sx,i;
36 GET_FLOAT_WORD(hy,y);
37 sxy = (hx ^ hy) & 0x80000000;
40 hy &= 0x7fffffff; /* |y| */
43 if(hy==0||hx>=0x7f800000||hy>0x7f800000) /* y=0,NaN;or x not finite */
45 if(hx<hy) {
48 } else if(hx==hy) {
59 if(hy<0x00800000) { /* subnormal y */
60 for (iy = -126,i=(hy<<8); i>0; i<<=1) iy -=1;
61 } else iy = (hy>>23)-127;
63 /* set up {hx,lx}, {hy,ly} and align y to x */
71 hy = 0x00800000|(0x007fffff&hy);
74 hy <<= n;
81 hz=hx-hy;
86 hz=hx-hy;