HomeSort by relevance Sort by last modified time
    Searched defs:hu (Results 1 - 3 of 3) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_log1p.c 105 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|0x3fe00000); /* normalize u/2 *
    [all...]
s_log1pf.c 43 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|0x3f000000); /* normalize u/2 *
    [all...]
  /external/fdlibm/
s_log1p.c 107 int k,hx,hu,ax; local
126 k=0;f=x;hu=1;} /* -0.2929<x<0.41422 */
132 hu = __HI(u); /* high word of u */
133 k = (hu>>20)-1023;
138 hu = __HI(u); /* high word of u */
139 k = (hu>>20)-1023;
142 hu &= 0x000fffff;
143 if(hu<0x6a09e) {
144 __HI(u) = hu|0x3ff00000; /* normalize u */
147 __HI(u) = hu|0x3fe00000; /* normalize u/2 *
    [all...]

Completed in 479 milliseconds