Home
last modified time | relevance | path

Searched refs:s_h (Results 1 – 3 of 3) sorted by relevance

/picolibc-latest/newlib/libm/math/
Dsf_pow.c171 float s2, s_h, s_l, t_h, t_l; in powf() local
198 s_h = s; in powf()
199 GET_FLOAT_WORD(is, s_h); in powf()
200 SET_FLOAT_WORD(s_h, is & 0xfffff000); in powf()
205 s_l = v * ((u - s_h * t_h) - s_h * t_l); in powf()
210 r += s_l * (s_h + s); in powf()
211 s2 = s_h * s_h; in powf()
217 u = s_h * t_h; in powf()
Ds_pow.c236 __float64 s2, s_h, s_l, t_h, t_l; in pow64() local
263 s_h = s; in pow64()
264 SET_LOW_WORD(s_h, 0); in pow64()
269 s_l = v * ((u - s_h * t_h) - s_h * t_l); in pow64()
274 r += s_l * (s_h + s); in pow64()
275 s2 = s_h * s_h; in pow64()
280 u = s_h * t_h; in pow64()
/picolibc-latest/newlib/libm/ld/ld128/
De_powl.c147 long double s2, s_h, s_l, t_h, t_l; in powl() local
324 s_h = s; in powl()
326 o.value = s_h; in powl()
329 s_h = o.value; in powl()
337 s_l = v * ((u - s_h * t_h) - s_h * t_l); in powl()
343 r += s_l * (s_h + s); in powl()
344 s2 = s_h * s_h; in powl()
352 u = s_h * t_h; in powl()