/openbmc/qemu/linux-user/arm/nwfpe/ |
H A D | double_cpdo.c | 117 fpa11->fpreg[Fd].fDouble = float64_div(rFn,rFm, &fpa11->fp_status); in DoubleCPDO() 122 fpa11->fpreg[Fd].fDouble = float64_div(rFm,rFn, &fpa11->fp_status); in DoubleCPDO() 273 return float64_div(float64_ln(rFm),getDoubleConstant(7)); 278 return float64_div(float64_sin(rFm),float64_cos(rFm)); 294 return float64_arctan(float64_div(rFn,rFm));
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | double_cpdo.c | 38 return float64_div(roundData, rFm, rFn); in float64_rdv() 46 [DVF_CODE >> 20] = float64_div, 52 [FDV_CODE >> 20] = float64_div,
|
H A D | ARM-gcc.h | 99 #define float64_div ___float64_div macro 113 #define float64_div __divdf3
|
H A D | softfloat.h | 186 float64 float64_div( struct roundingData *, float64, float64 );
|
H A D | softfloat.c | 2174 float64 float64_div( struct roundingData *roundData, float64 a, float64 b ) in float64_div() function
|
/openbmc/linux/arch/sh/kernel/cpu/sh4/ |
H A D | fpu.c | 23 extern unsigned long long float64_div(unsigned long long a, 346 llx = float64_div(llx, lly); in ieee_fpe_handler()
|
H A D | softfloat.c | 85 float64 float64_div(float64 a, float64 b); 716 float64 float64_div(float64 a, float64 b) in float64_div() function
|
/openbmc/qemu/target/loongarch/tcg/ |
H A D | fpu_helper.c | 153 fd = float64_div(fj, fk, &env->fp_status); in helper_fdiv_d() 289 fd = float64_div(float64_one, fj, &env->fp_status); in helper_frecip_d() 310 fd = float64_div(float64_one, fp, &env->fp_status); in helper_frsqrt_d()
|
H A D | vec_helper.c | 2429 DO_3OP_F(vfdiv_d, 64, UD, float64_div)
|
/openbmc/qemu/target/mips/tcg/ |
H A D | fpu_helper.c | 1020 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip_d() 1039 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt_d() 1058 fdt2 = float64_div(float64_one, fdt0, &env->active_fpu.fp_status); in helper_float_recip1_d() 1089 fdt2 = float64_div(float64_one, fdt2, &env->active_fpu.fp_status); in helper_float_rsqrt1_d() 1329 dt2 = float64_div(fdt0, fdt1, &env->active_fpu.fp_status); in helper_float_div_d() 1401 fdt2 = float64_chs(float64_div(fdt2, FLOAT_TWO64, in helper_float_rsqrt2_d()
|
/openbmc/qemu/target/alpha/ |
H A D | vax_helper.c | 273 fr = float64_div(fa, fb, &FP_STATUS); in helper_divg()
|
H A D | fpu_helper.c | 335 fr = float64_div(fa, fb, &FP_STATUS); in helper_divt()
|
/openbmc/qemu/target/sh4/ |
H A D | op_helper.c | 340 t0 = float64_div(t0, t1, &env->fp_status); in helper_fdiv_DT()
|
/openbmc/qemu/target/xtensa/ |
H A D | fpu_helper.c | 244 return float64_div(b, a, &env->fp_status); in HELPER()
|
/openbmc/qemu/target/hppa/ |
H A D | fpu_helper.c | 175 float64 ret = float64_div(a, b, &env->fp_status); in HELPER()
|
/openbmc/qemu/target/ppc/ |
H A D | fpu_helper.c | 781 FPU_FRE(FRE, float64_div) 783 FPU_FRSQRTE(FRSQRTE, float64_div) 791 FPU_HELPER(FDIV, float64_div, div_flags_handler) 1400 u.d = float64_div(u.d, tmp, &env->vec_status); in helper_efdcfsf() 1412 u.d = float64_div(u.d, tmp, &env->vec_status); in helper_efdcfuf() 1508 u1.d = float64_div(u1.d, u2.d, &env->vec_status); in helper_efddiv()
|
/openbmc/qemu/tests/fp/ |
H A D | fp-bench.c | 367 res.f64 = float64_div(a, b, &soft_status); in bench()
|
/openbmc/qemu/target/sparc/ |
H A D | fop_helper.c | 139 float64 ret = float64_div(src1, src2, &env->fp_status); in helper_fdivd()
|
/openbmc/qemu/target/riscv/ |
H A D | fpu_helper.c | 412 return float64_div(frs1, frs2, &env->fp_status); in helper_fdiv_d()
|
H A D | vector_helper.c | 3286 RVVCALL(OPFVV2, vfdiv_vv_d, OP_UUU_D, H8, H8, H8, float64_div) in RVVCALL() 3292 RVVCALL(OPFVF2, vfdiv_vf_d, OP_UUU_D, H8, H8, float64_div) in RVVCALL() 3309 return float64_div(b, a, s); in float64_rdiv()
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | fpu_helper.c | 277 float64 ret = float64_div(f1, f2, &env->fpu_status); in HELPER()
|
/openbmc/qemu/include/fpu/ |
H A D | softfloat.h | 792 float64 float64_div(float64, float64, float_status *status);
|
/openbmc/qemu/target/arm/tcg/ |
H A D | vec_helper.c | 1444 DO_3OP(gvec_fdiv_d, float64_div, float64) in DO_3OP()
|
H A D | sve_helper.c | 4326 DO_ZPZZ_FP(sve_fdiv_d, uint64_t, H1_8, float64_div) in DO_ZPZZ_FP()
|
/openbmc/qemu/fpu/ |
H A D | softfloat.c | 2530 float64_div(float64 a, float64 b, float_status *s) in float64_div() function
|