Home | History | Annotate | Download | only in src

Lines Matching defs:hy

102 	int32_t hx,hy,ix,iy;
106 EXTRACT_WORDS(hy,ly,y);
107 ix = hx&0x7fffffff; iy = hy&0x7fffffff;
146 return (hy>=0)? y: zero;
148 return (hy<0)?-y: zero;
151 if(hy<0) return one/x; else return x;
153 if(hy==0x40000000) return x*x; /* y is 2 */
154 if(hy==0x3fe00000) { /* y is 0.5 */
165 if(hy<0) z = one/z; /* z = (1/|x|) */
191 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
192 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
195 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
196 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;