Searched refs:float64_div (Results 1 – 5 of 5) sorted by relevance
/external/qemu/target-arm/ |
D | helper.c | 2955 q = float64_div(q, float64_512, s); in recip_estimate() 2956 q = float64_div(float64_one, q, s); in recip_estimate() 2964 return float64_div(int64_to_float64(q_int, s), float64_256, s); in recip_estimate() 3033 q = float64_div(q, float64_512, s); in recip_sqrt_estimate() 3035 q = float64_div(float64_one, q, s); in recip_sqrt_estimate() 3048 q = float64_div(q, float64_256, s); in recip_sqrt_estimate() 3050 q = float64_div(float64_one, q, s); in recip_sqrt_estimate() 3060 return float64_div(int64_to_float64(q_int, s), float64_256, s); in recip_sqrt_estimate()
|
/external/qemu/fpu/ |
D | softfloat-native.h | 337 INLINE float64 float64_div( float64 a, float64 b STATUS_PARAM) in float64_div() function
|
D | softfloat.h | 438 float64 float64_div( float64, float64 STATUS_PARAM );
|
D | softfloat.c | 3352 float64 float64_div( float64 a, float64 b STATUS_PARAM ) in float64_div() function
|
/external/qemu/target-mips/ |
D | op_helper.c | 2552 fdt2 = float64_div(FLOAT_ONE64, fdt0, &env->active_fpu.fp_status); in FLOAT_UNOP() 2573 fdt2 = float64_div(FLOAT_ONE64, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt_d() 2594 fdt2 = float64_div(FLOAT_ONE64, fdt0, &env->active_fpu.fp_status); in helper_float_recip1_d() 2627 fdt2 = float64_div(FLOAT_ONE64, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt1_d() 2829 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, &env->active_fpu.fp_status)); in helper_float_rsqrt2_d()
|