Searched refs:fsth2 (Results 1 – 1 of 1) sorted by relevance
303 uint32_t fsth2; in helper_float_cvtps_pw() local306 fsth2 = int32_to_float32(dt0 >> 32, &env->active_fpu.fp_status); in helper_float_cvtps_pw()308 return ((uint64_t)fsth2 << 32) | fst2; in helper_float_cvtps_pw()1074 uint32_t fsth2; in helper_float_recip1_ps() local1078 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps()1080 return ((uint64_t)fsth2 << 32) | fstl2; in helper_float_recip1_ps()1106 uint32_t fsth2; in helper_float_rsqrt1_ps() local1109 fsth2 = float32_sqrt(fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()1111 fsth2 = float32_div(float32_one, fsth2, &env->active_fpu.fp_status); in helper_float_rsqrt1_ps()1113 return ((uint64_t)fsth2 << 32) | fstl2; in helper_float_rsqrt1_ps()[all …]