/openbmc/qemu/linux-user/arm/nwfpe/ |
H A D | single_cpdo.c | 97 fpa11->fpreg[Fd].fSingle = float32_div(rFn,rFm, &fpa11->fp_status); in SingleCPDO() 102 fpa11->fpreg[Fd].fSingle = float32_div(rFm,rFn, &fpa11->fp_status); in SingleCPDO() 236 return float32_div(float32_ln(rFm),getSingleConstant(7)); 241 return float32_div(float32_sin(rFm),float32_cos(rFm)); 251 return float32_arctan(float32_div(rFn,rFm));
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | single_cpdo.c | 34 return float32_div(roundData, rFm, rFn); in float32_rdv() 42 [DVF_CODE >> 20] = float32_div, 47 [FDV_CODE >> 20] = float32_div,
|
H A D | ARM-gcc.h | 83 #define float32_div __divsf3 macro
|
H A D | softfloat.h | 154 float32 float32_div( struct roundingData *, float32, float32 );
|
/openbmc/qemu/target/mips/tcg/ |
H A D | fpu_helper.c | 1029 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip_s() 1049 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt_s() 1067 fst2 = float32_div(float32_one, fst0, &env->active_fpu.fp_status); in helper_float_recip1_s() 1077 fstl2 = float32_div(float32_one, fdt0 & 0XFFFFFFFF, in helper_float_recip1_ps() 1079 fsth2 = float32_div(float32_one, fdt0 >> 32, &env->active_fpu.fp_status); in helper_float_recip1_ps() 1099 fst2 = float32_div(float32_one, fst2, &env->active_fpu.fp_status); in helper_float_rsqrt1_s() 1111 fstl2 = float32_div(float32_one, fstl2, &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() 1339 wt2 = float32_div(fst0, fst1, &env->active_fpu.fp_status); in helper_float_div_s() 1354 wtl2 = float32_div(fstl0, fstl1, &env->active_fpu.fp_status); in helper_float_div_ps() [all …]
|
/openbmc/linux/arch/sh/kernel/cpu/sh4/ |
H A D | fpu.c | 25 extern unsigned long int float32_div(unsigned long int a, unsigned long int b); 354 hx = float32_div(hx, hy); in ieee_fpe_handler()
|
H A D | softfloat.c | 86 float32 float32_div(float32 a, float32 b); 774 float32 float32_div(float32 a, float32 b) in float32_div() function
|
/openbmc/qemu/target/sh4/ |
H A D | op_helper.c | 332 t0 = float32_div(t0, t1, &env->fp_status); in helper_fdiv_FT() 408 t0 = float32_div(float32_one, t0, &env->fp_status); in helper_fsrra_FT()
|
/openbmc/qemu/target/loongarch/tcg/ |
H A D | fpu_helper.c | 144 fd = nanbox_s(float32_div((uint32_t)fj, (uint32_t)fk, &env->fp_status)); in helper_fdiv_s() 280 fd = nanbox_s(float32_div(float32_one, (uint32_t)fj, &env->fp_status)); in helper_frecip_s() 300 fd = nanbox_s(float32_div(float32_one, fp, &env->fp_status)); in helper_frsqrt_s()
|
/openbmc/qemu/target/alpha/ |
H A D | vax_helper.c | 146 fr = float32_div(fa, fb, &FP_STATUS); in helper_divf()
|
H A D | fpu_helper.c | 258 fr = float32_div(fa, fb, &FP_STATUS); in helper_divs()
|
/openbmc/qemu/target/rx/ |
H A D | op_helper.c | 153 FLOATOP(fdiv, float32_div) in FLOATOP()
|
/openbmc/qemu/target/microblaze/ |
H A D | op_helper.c | 196 fd.f = float32_div(fb.f, fa.f, &env->fp_status); in helper_fdiv()
|
/openbmc/qemu/target/tricore/ |
H A D | fpu_helper.c | 261 f_result = float32_div(arg1, arg2 , &env->fp_status); in helper_fdiv()
|
/openbmc/qemu/target/xtensa/ |
H A D | fpu_helper.c | 250 return float32_div(b, a, &env->fp_status); in HELPER()
|
/openbmc/qemu/target/hppa/ |
H A D | fpu_helper.c | 133 float32 ret = float32_div(a, b, &env->fp_status); in HELPER()
|
/openbmc/qemu/target/i386/ |
H A D | ops_sse.h | 848 d->ZMM_S(i) = float32_div(float32_one, in glue() 860 d->ZMM_S(0) = float32_div(float32_one, in helper_rsqrtss() 875 d->ZMM_S(i) = float32_div(float32_one, s->ZMM_S(i), &env->sse_status); in glue() 885 d->ZMM_S(0) = float32_div(float32_one, s->ZMM_S(0), &env->sse_status); in helper_rcpss() 1413 d->MMX_S(0) = float32_div(float32_one, s->MMX_S(0), &env->mmx_status); in helper_pfrcp() 1420 d->MMX_S(1) = float32_div(float32_one, in helper_pfrsqrt()
|
/openbmc/qemu/tests/fp/ |
H A D | fp-bench.c | 332 res.f32 = float32_div(a, b, &soft_status); in bench()
|
/openbmc/qemu/target/sparc/ |
H A D | fop_helper.c | 111 float32 ret = float32_div(src1, src2, &env->fp_status); in helper_fdivs()
|
/openbmc/qemu/target/riscv/ |
H A D | fpu_helper.c | 243 return nanbox_s(env, float32_div(frs1, frs2, &env->fp_status)); in helper_fdiv_s()
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | fpu_helper.c | 269 float32 ret = float32_div(f1, f2, &env->fpu_status); in HELPER()
|
/openbmc/qemu/target/ppc/ |
H A D | fpu_helper.c | 1018 u.f = float32_div(u.f, tmp, &env->vec_status); in efscfsf() 1030 u.f = float32_div(u.f, tmp, &env->vec_status); in efscfuf() 1157 u1.f = float32_div(u1.f, u2.f, &env->vec_status); in efsdiv()
|
H A D | int_helper.c | 1531 r->f32[i] = float32_div(float32_one, b->f32[i], &env->vec_status); in helper_vrefp() 1560 r->f32[i] = float32_div(float32_one, t, &env->vec_status); in VRFI()
|
/openbmc/qemu/include/fpu/ |
H A D | softfloat.h | 597 float32 float32_div(float32, float32, float_status *status);
|
/openbmc/qemu/target/arm/tcg/ |
H A D | vec_helper.c | 1365 return float32_div(op1, float32_two, stat); in float32_rsqrts_nf() 1443 DO_3OP(gvec_fdiv_s, float32_div, float32) in DO_3OP()
|