Home
last modified time | relevance | path

Searched refs:float16_muladd (Results 1 – 11 of 11) sorted by relevance

/openbmc/qemu/target/arm/tcg/
H A Dhelper-a64.c494 return float16_muladd(a, b, c, 0, fpst); in ADVSIMD_TWOHALFOP()
508 r1 = float16_muladd(a1, b1, c1, 0, fpst); in HELPER()
509 r2 = float16_muladd(a2, b2, c2, 0, fpst); in HELPER()
H A Dvec_helper.c1037 d[H2(i)] = float16_muladd(e2, e1, a[H2(i)], negf_real, fpst); in HELPER()
1038 d[H2(i + 1)] = float16_muladd(e4, e3, a[H2(i + 1)], negf_imag, fpst); in HELPER()
1074 d[H2(j)] = float16_muladd(e2, e1, a[H2(j)], negf_real, fpst); in HELPER()
1075 d[H2(j + 1)] = float16_muladd(e4, e3, a[H2(j + 1)], negf_imag, fpst); in HELPER()
1613 return float16_muladd(op1, op2, dest, 0, stat); in float16_muladd_f()
1637 return float16_muladd(float16_chs(op1), op2, dest, 0, stat); in float16_mulsub_f()
1661 return float16_muladd(op1, op2, dest, float_muladd_negate_product, stat); in float16_ah_mulsub_f()
H A Dvfp_helper.c1119 return float16_muladd(a, b, c, 0, fpst); in VFP_HELPER()
H A Dmve_helper.c3031 #define DO_VCMLAH(N, M, D, S) float16_muladd(N, M, D, 0, S)
3113 #define DO_VFMAS_SCALARH(N, M, D, F, S) float16_muladd(N, D, M, F, S)
3117 DO_2OP_FP_ACC_SCALAR(vfma_scalarh, 2, float16, float16_muladd)
H A Dsve_helper.c5193 r = float16_muladd(e1, e2, e3, flags, status); in do_fmla_zpzzz_h()
5515 d[i] = float16_muladd(n[i], mm, coeff[xx], flags, s);
5745 d = float16_muladd(e2, e1, d, negf_real, status); in HELPER()
5750 d = float16_muladd(e4, e3, d, negf_imag, status); in HELPER()
H A Dsme_helper.c1018 *a = float16_muladd(n, *m, *a, negf, fpst); in do_fmopa_h()
/openbmc/qemu/target/riscv/
H A Dvector_helper.c3404 return float16_muladd(a, b, d, 0, s);
3442 return float16_muladd(a, b, d, float_muladd_negate_c |
3473 return float16_muladd(a, b, d, float_muladd_negate_c, s); in RVVCALL()
3501 return float16_muladd(a, b, d, float_muladd_negate_product, s); in RVVCALL()
3529 return float16_muladd(d, b, a, 0, s); in RVVCALL()
3557 return float16_muladd(d, b, a, float_muladd_negate_c | in RVVCALL()
3588 return float16_muladd(d, b, a, float_muladd_negate_c, s); in RVVCALL()
3616 return float16_muladd(d, b, a, float_muladd_negate_product, s); in RVVCALL()
H A Dfpu_helper.c126 return nanbox_h(env, float16_muladd(frs1, frs2, frs3, flags, in do_fmadd_h()
/openbmc/qemu/tests/fp/
H A Dwrap.c.inc572 WRAP_MULADD(qemu_f16_mulAdd, float16_muladd, float16)
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h242 float16 float16_muladd(float16, float16, float16, int, float_status *status);
/openbmc/qemu/fpu/
H A Dsoftfloat.c2255 float16 float16_muladd(float16 a, float16 b, float16 c, in float16_muladd() function