Searched refs:fsth2 (Results 1 – 1 of 1) sorted by relevance
2208 uint32_t fsth2; in helper_float_cvtps_pw() local2212 fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status); in helper_float_cvtps_pw()2214 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_cvtps_pw()2612 uint32_t fsth2; in helper_float_recip1_ps() local2616 fsth2 = float32_div(FLOAT_ONE32, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps()2618 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_recip1_ps()2646 uint32_t fsth2; in helper_float_rsqrt1_ps() local2650 fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()2652 fsth2 = float32_div(FLOAT_ONE32, fsth2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()2654 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_rsqrt1_ps()[all …]