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

/seL4-test-master/projects/musllibc/src/math/
H A Dpowf.c146 float s2,s_h,s_l,t_h,t_l; local
169 /* compute s = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
173 s_h = s;
174 GET_FLOAT_WORD(is, s_h);
175 SET_FLOAT_WORD(s_h, is & 0xfffff000);
180 s_l = v*((u - s_h*t_h) - s_h*t_l);
184 r += s_l*(s_h+s);
185 s2 = s_h*s_h;
[all...]
H A Dpow.c219 double ss,s2,s_h,s_l,t_h,t_l; local
242 /* compute ss = s_h+s_l = (x-1)/(x+1) or (x-1.5)/(x+1.5) */
246 s_h = ss;
247 SET_LOW_WORD(s_h, 0);
252 s_l = v*((u-s_h*t_h)-s_h*t_l);
256 r += s_l*(s_h+ss);
257 s2 = s_h*s_h;
262 u = s_h*t_
[all...]

Completed in 78 milliseconds