HomeSort by: relevance | last modified time | path
    Searched defs:t_h (Results 1 - 6 of 6) sorted by relevancy

  /src/lib/libm/src/
e_pow.c 210 double ss,s2,s_h,s_l,t_h,t_l; local in function:__ieee754_pow
230 /* t_h=ax+bp[k] High */
231 t_h = zero;
232 SET_HIGH_WORD(t_h,((ix>>1)|0x20000000)+0x00080000+(k<<18));
233 t_l = ax - (t_h-bp[k]);
234 s_l = v*((u-s_h*t_h)-s_h*t_l);
240 t_h = 3.0+s2+r;
241 SET_LOW_WORD(t_h,0);
242 t_l = r-((t_h-3.0)-s2);
244 u = s_h*t_h;
    [all...]
e_powf.c 152 float s2,s_h,s_l,t_h,t_l; local in function:__ieee754_powf
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 = (float)3.0+s2+r;
184 GET_FLOAT_WORD(is,t_h);
185 SET_FLOAT_WORD(t_h,is&0xfffff000);
186 t_l = r-((t_h-(float)3.0)-s2);
188 u = s_h*t_h;
    [all...]
  /src/lib/libm/ld128/
e_powl.c 150 long double s2, s_h, s_l, t_h, t_l; local in function:powl
321 /* t_h=ax+bp[k] High */
322 t_h = ax + bp[k];
323 o.value = t_h;
326 t_h = o.value;
327 t_l = ax - (t_h - bp[k]);
328 s_l = v * ((u - s_h * t_h) - s_h * t_l);
336 t_h = 3.0 + s2 + r;
337 o.value = t_h;
340 t_h = o.value
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_ni_dpm.c 2402 u32 t_l, t_h; local in function:ni_populate_smc_t
2425 &t_h);
2433 &t_h);
2436 t_h = (i + 1) * 1000 - 50 * R600_AH_DFLT;
2447 a_t = CG_R(0xffff) | CG_L(t_h * high_bsp / 20000);
radeon_si_dpm.c 5096 u32 t_l, t_h; local in function:si_populate_smc_t
5118 &t_h);
5121 t_h = (i + 1) * 1000 - 50 * R600_AH_DFLT;
5131 a_t = CG_R(0xffff) | CG_L(t_h * high_bsp / 20000);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_si_dpm.c 5560 u32 t_l, t_h; local in function:si_populate_smc_t
5582 &t_h);
5585 t_h = (i + 1) * 1000 - 50 * R600_AH_DFLT;
5595 a_t = CG_R(0xffff) | CG_L(t_h * high_bsp / 20000);

Completed in 106 milliseconds