Home
last modified time | relevance | path

Searched refs:frs1 (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/target/riscv/
H A Dfpu_helper.c124 float16 frs1 = check_nanbox_h(env, rs1); in do_fmadd_h() local
127 return nanbox_h(env, float16_muladd(frs1, frs2, frs3, flags, in do_fmadd_h()
134 float32 frs1 = check_nanbox_s(env, rs1); in do_fmadd_s() local
137 return nanbox_s(env, float32_muladd(frs1, frs2, frs3, flags, in do_fmadd_s()
141 uint64_t helper_fmadd_s(CPURISCVState *env, uint64_t frs1, uint64_t frs2, in helper_fmadd_s() argument
144 return do_fmadd_s(env, frs1, frs2, frs3, 0); in helper_fmadd_s()
147 uint64_t helper_fmadd_d(CPURISCVState *env, uint64_t frs1, uint64_t frs2, in helper_fmadd_d() argument
150 return float64_muladd(frs1, frs2, frs3, 0, &env->fp_status); in helper_fmadd_d()
153 uint64_t helper_fmadd_h(CPURISCVState *env, uint64_t frs1, uint64_t frs2, in helper_fmadd_h() argument
156 return do_fmadd_h(env, frs1, frs2, frs3, 0); in helper_fmadd_h()
[all …]
H A Dinternals.h72 target_ulong fclass_h(uint64_t frs1);
73 target_ulong fclass_s(uint64_t frs1);
74 target_ulong fclass_d(uint64_t frs1);
H A Dvector_helper.c4398 target_ulong fclass_h(uint64_t frs1) in GEN_VEXT_CMP_VF()
4400 float16 f = frs1; in GEN_VEXT_CMP_VF()
4417 target_ulong fclass_s(uint64_t frs1) in fclass_s() argument
4419 float32 f = frs1; in fclass_s()
4436 target_ulong fclass_d(uint64_t frs1) in fclass_d() argument
4438 float64 f = frs1; in fclass_d()
/openbmc/qemu/include/block/
H A Dnvme.h976 uint8_t frs1[8]; member
/openbmc/qemu/hw/nvme/
H A Dctrl.c5036 strpadcpy((char *)&fw_log.frs1, sizeof(fw_log.frs1), "1.0", ' '); in nvme_fw_log_info()