Home | History | Annotate | Download | only in src

Lines Matching defs:hu

104 	int32_t k,hx,hu,ax;
123 k=0;f=x;hu=1;} /* sqrt(2)/2- <= 1+x < sqrt(2)+ */
129 GET_HIGH_WORD(hu,u);
130 k = (hu>>20)-1023;
135 GET_HIGH_WORD(hu,u);
136 k = (hu>>20)-1023;
139 hu &= 0x000fffff;
147 if(hu<0x6a09e) { /* u ~< sqrt(2) */
148 SET_HIGH_WORD(u,hu|0x3ff00000); /* normalize u */
151 SET_HIGH_WORD(u,hu|0x3fe00000); /* normalize u/2 */
152 hu = (0x00100000-hu)>>2;
157 if(hu==0) { /* |f| < 2**-20 */