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 104 int32_t k,hx,hu,ax; local
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 *
    [all...]
s_log1pf.c 42 int32_t k,hx,hu,ax; local
61 k=0;f=x;hu=1;} /* sqrt(2)/2- <= 1+x < sqrt(2)+ */
67 GET_FLOAT_WORD(hu,u);
68 k = (hu>>23)-127;
74 GET_FLOAT_WORD(hu,u);
75 k = (hu>>23)-127;
78 hu &= 0x007fffff;
86 if(hu<0x3504f4) { /* u < sqrt(2) */
87 SET_FLOAT_WORD(u,hu|0x3f800000);/* normalize u */
90 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 216 milliseconds