Home
last modified time | relevance | path

Searched refs:float16_mul (Results 1 – 8 of 8) sorted by relevance

/qemu/target/arm/tcg/
H A Dvec_helper.c1266 float16 result = float16_mul(op1, op1, stat);
1319 return float16_sub(float16_two, float16_mul(op1, op2, stat), stat); in float16_recps_nf()
1344 op1 = float16_sub(float16_three, float16_mul(op1, op2, stat), stat); in float16_rsqrts_nf()
1380 DO_3OP(gvec_fmul_h, float16_mul, float16) in DO_3OP()
1458 return float16_add(dest, float16_mul(op1, op2, stat), stat); in DO_3OP()
1470 return float16_sub(dest, float16_mul(op1, op2, stat), stat); in float16_mulsub_nf()
1611 DO_FMUL_IDX(gvec_fmul_idx_h, nop, float16_mul, float16, H2)
1629 DO_FMUL_IDX(gvec_fmla_nf_idx_h, float16_add, float16_mul, float16, H2)
1631 DO_FMUL_IDX(gvec_fmls_nf_idx_h, float16_sub, float16_mul, float16, H2)
H A Dhelper-a64.c580 return float16_mul(a, b, fpst);
H A Dmve_helper.c3014 #define DO_VCMULH(N, M, D, S) float16_mul(N, M, S)
H A Dsve_helper.c4320 DO_ZPZZ_FP(sve_fmul_h, uint16_t, H1_2, float16_mul) in DO_ZPZZ_FP()
4409 DO_ZPZS_FP(sve_fmuls_h, float16, H1_2, float16_mul)
/qemu/target/riscv/
H A Dfpu_helper.c569 return nanbox_h(env, float16_mul(frs1, frs2, &env->fp_status)); in helper_fmul_h()
H A Dvector_helper.c3073 RVVCALL(OPFVV2, vfmul_vv_h, OP_UUU_H, H2, H2, H2, float16_mul) in RVVCALL()
3079 RVVCALL(OPFVF2, vfmul_vf_h, OP_UUU_H, H2, H2, float16_mul) in RVVCALL()
/qemu/include/fpu/
H A Dsoftfloat.h239 float16 float16_mul(float16, float16, float_status *status);
/qemu/fpu/
H A Dsoftfloat.c2103 float16 QEMU_FLATTEN float16_mul(float16 a, float16 b, float_status *status) in float16_mul() function