Searched refs:fsth2 (Results 1 – 1 of 1) sorted by relevance
304 uint32_t fsth2; in helper_float_cvtps_pw() local307 fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status); in helper_float_cvtps_pw()309 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_cvtps_pw()1075 uint32_t fsth2; in helper_float_recip1_ps() local1079 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps()1081 return ((uint64_t)fsth2 << 32) | fstl2; in helper_float_recip1_ps()1107 uint32_t fsth2; in helper_float_rsqrt1_ps() local1110 fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()1112 fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()1114 return ((uint64_t)fsth2 << 32) | fstl2; in helper_float_rsqrt1_ps()[all …]