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

/freebsd-13-stable/lib/msun/src/
H A De_pow.c211 double ss,s2,s_h,s_l,t_h,t_l; local
231 /* t_h=ax+bp[k] High */
232 t_h = zero;
233 SET_HIGH_WORD(t_h,((ix>>1)|0x20000000)+0x00080000+(k<<18));
234 t_l = ax - (t_h-bp[k]);
235 s_l = v*((u-s_h*t_h)-s_h*t_l);
241 t_h = 3+s2+r;
242 SET_LOW_WORD(t_h,0);
243 t_l = r-((t_h-3)-s2);
245 u = s_h*t_h;
[all...]
H A De_powf.c152 float s2,s_h,s_l,t_h,t_l; local
173 /* t_h=ax+bp[k] High */
175 SET_FLOAT_WORD(t_h,is+0x00400000+(k<<21));
176 t_l = ax - (t_h-bp[k]);
177 s_l = v*((u-s_h*t_h)-s_h*t_l);
183 t_h = 3+s2+r;
184 GET_FLOAT_WORD(is,t_h);
185 SET_FLOAT_WORD(t_h,is&0xfffff000);
186 t_l = r-((t_h-3)-s2);
188 u = s_h*t_h;
[all...]
/freebsd-13-stable/lib/msun/ld128/
H A De_powl.c152 long double s2, s_h, s_l, t_h, t_l; local
323 /* t_h=ax+bp[k] High */
324 t_h = ax + bp[k];
325 o.value = t_h;
328 t_h = o.value;
329 t_l = ax - (t_h - bp[k]);
330 s_l = v * ((u - s_h * t_h) - s_h * t_l);
338 t_h = 3.0 + s2 + r;
339 o.value = t_h;
342 t_h
[all...]

Completed in 103 milliseconds