Searched refs:hu (Results 1 - 2 of 2) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
H A Ds_log1p.c105 int32_t k,hx,hu,ax; local
124 k=0;f=x;hu=1;} /* sqrt(2)/2- <= 1+x < sqrt(2)+ */
130 GET_HIGH_WORD(hu,u);
131 k = (hu>>20)-1023;
136 GET_HIGH_WORD(hu,u);
137 k = (hu>>20)-1023;
140 hu &= 0x000fffff;
148 if(hu<0x6a09e) { /* u ~< sqrt(2) */
149 SET_HIGH_WORD(u,hu|0x3ff00000); /* normalize u */
152 SET_HIGH_WORD(u,hu|
[all...]
H A Ds_log1pf.c43 int32_t k,hx,hu,ax; local
62 k=0;f=x;hu=1;} /* sqrt(2)/2- <= 1+x < sqrt(2)+ */
68 GET_FLOAT_WORD(hu,u);
69 k = (hu>>23)-127;
75 GET_FLOAT_WORD(hu,u);
76 k = (hu>>23)-127;
79 hu &= 0x007fffff;
87 if(hu<0x3504f4) { /* u < sqrt(2) */
88 SET_FLOAT_WORD(u,hu|0x3f800000);/* normalize u */
91 SET_FLOAT_WORD(u,hu|
[all...]

Completed in 2120 milliseconds