Home
last modified time | relevance | path

Searched refs:float32_div (Results 1 – 5 of 5) sorted by relevance

/external/qemu/target-mips/
Dop_helper.c2562 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip_s()
2584 fst2 = float32_div(FLOAT_ONE32, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt_s()
2604 fst2 = float32_div(FLOAT_ONE32, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s()
2615 fst2 = float32_div(FLOAT_ONE32, fdt0 & 0XFFFFFFFF, &env->active_fpu.fp_status); in helper_float_recip1_ps()
2616 fsth2 = float32_div(FLOAT_ONE32, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps()
2638 fst2 = float32_div(FLOAT_ONE32, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_s()
2651 fst2 = float32_div(FLOAT_ONE32, fst2, &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()
2839 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); in helper_float_rsqrt2_s()
2856 fst2 = float32_chs(float32_div(fst2, FLOAT_TWO32, &env->active_fpu.fp_status)); in helper_float_rsqrt2_ps()
[all …]
/external/qemu/fpu/
Dsoftfloat-native.h216 INLINE float32 float32_div( float32 a, float32 b STATUS_PARAM) in float32_div() function
Dsoftfloat.h320 float32 float32_div( float32, float32 STATUS_PARAM );
Dsoftfloat.c1990 float32 float32_div( float32 a, float32 b STATUS_PARAM ) in float32_div() function
/external/qemu/target-arm/
Dhelper.c2928 return float32_div(float32_sub(float32_three, product, s), float32_two, s); in HELPER()