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

/seL4-camkes-master/projects/musllibc/src/math/
H A Dpow.c219 double ss,s2,s_h,s_l,t_h,t_l; local
248 /* t_h=ax+bp[k] High */
249 t_h = 0.0;
250 SET_HIGH_WORD(t_h, ((ix>>1)|0x20000000) + 0x00080000 + (k<<18));
251 t_l = ax - (t_h-bp[k]);
252 s_l = v*((u-s_h*t_h)-s_h*t_l);
258 t_h = 3.0 + s2 + r;
259 SET_LOW_WORD(t_h, 0);
260 t_l = r - ((t_h-3.0)-s2);
262 u = s_h*t_h;
[all...]
H A Dpowf.c146 float s2,s_h,s_l,t_h,t_l; local
176 /* t_h=ax+bp[k] High */
178 SET_FLOAT_WORD(t_h, is + 0x00400000 + (k<<21));
179 t_l = ax - (t_h - bp[k]);
180 s_l = v*((u - s_h*t_h) - s_h*t_l);
186 t_h = 3.0f + s2 + r;
187 GET_FLOAT_WORD(is, t_h);
188 SET_FLOAT_WORD(t_h, is & 0xfffff000);
189 t_l = r - ((t_h - 3.0f) - s2);
191 u = s_h*t_h;
[all...]

Completed in 80 milliseconds