Lines Matching refs:hy
110 int hx,hy,ix,iy; local
115 hy = __HI(y); ly = __LO(y);
116 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
152 return (hy>=0)? y: zero;
154 return (hy<0)?-y: zero;
157 if(hy<0) return one/x; else return x;
159 if(hy==0x40000000) return x*x; /* y is 2 */
160 if(hy==0x3fe00000) { /* y is 0.5 */
171 if(hy<0) z = one/z; /* z = (1/|x|) */
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;