Home
last modified time | relevance | path

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

/qemu/tests/tcg/i386/
H A Dtest-i386-fprem.c45 } __attribute__((packed)) ieee; member
77 .ieee.negative = 0,
78 .ieee.exponent = 0x7fff,
79 .ieee.one = 1,
80 .ieee.mantissa = 0,
84 .ieee.negative = 0,
85 .ieee.exponent = 0x7fff,
86 .ieee.one = 0,
87 .ieee.mantissa = 0,
91 .ieee.negative = 0,
[all …]
/qemu/include/fpu/
H A Dsoftfloat.h196 float16 float32_to_float16(float32, bool ieee, float_status *status);
197 float32 float16_to_float32(float16, bool ieee, float_status *status);
198 float16 float64_to_float16(float64 a, bool ieee, float_status *status);
199 float64 float16_to_float64(float16 a, bool ieee, float_status *status);
/qemu/fpu/
H A Dsoftfloat.c2792 float32 float16_to_float32(float16 a, bool ieee, float_status *s) in float16_to_float32() argument
2794 const FloatFmt *fmt16 = ieee ? &float16_params : &float16_params_ahp; in float16_to_float32()
2802 float64 float16_to_float64(float16 a, bool ieee, float_status *s) in float16_to_float64() argument
2804 const FloatFmt *fmt16 = ieee ? &float16_params : &float16_params_ahp; in float16_to_float64()
2812 float16 float32_to_float16(float32 a, bool ieee, float_status *s) in float32_to_float16() argument
2818 if (ieee) { in float32_to_float16()
2854 float16 float64_to_float16(float64 a, bool ieee, float_status *s) in float64_to_float16() argument
2860 if (ieee) { in float64_to_float16()
/qemu/docs/system/ppc/
H A Dpseries.rst49 <https://standards.ieee.org/standard/1275-1994.html>`_.
/qemu/target/arm/tcg/
H A Dmve_helper.c3334 bool ieee = !(env->vfp.fpcr & FPCR_AHP); local
3351 r = float32_to_float16(m[H4(e)], ieee, fpst);
3364 bool ieee = !(env->vfp.fpcr & FPCR_AHP); in do_vcvt_hs() local
3381 r = float16_to_float32(m[H2(e * 2 + top)], ieee, fpst); in do_vcvt_hs()
/qemu/hw/nvme/
H A Dctrl.c8805 id->ieee[0] = 0xb3; in nvme_init_ctrl()
8806 id->ieee[1] = 0x02; in nvme_init_ctrl()
8807 id->ieee[2] = 0x00; in nvme_init_ctrl()
8809 id->ieee[0] = 0x00; in nvme_init_ctrl()
8810 id->ieee[1] = 0x54; in nvme_init_ctrl()
8811 id->ieee[2] = 0x52; in nvme_init_ctrl()
/qemu/target/mips/tcg/
H A Dmsa_helper.c6307 static inline float16 float16_from_float32(int32_t a, bool ieee, in float16_from_float32() argument
6312 f_val = float32_to_float16((float32)a, ieee, status); in float16_from_float32()
6326 static inline float32 float32_from_float16(int16_t a, bool ieee, in float32_from_float16() argument
6331 f_val = float16_to_float32((float16)a, ieee, status); in float32_from_float16()
7363 bool ieee = true; in helper_msa_fexdo_df() local
7365 MSA_FLOAT_BINOP(Lh(pwx, i), from_float32, pws->w[i], ieee, 16); in helper_msa_fexdo_df()
7366 MSA_FLOAT_BINOP(Rh(pwx, i), from_float32, pwt->w[i], ieee, 16); in helper_msa_fexdo_df()
7977 bool ieee = true; in helper_msa_fexupl_df() local
7979 MSA_FLOAT_BINOP(pwx->w[i], from_float16, Lh(pws, i), ieee, 32); in helper_msa_fexupl_df()
8013 bool ieee = true; in helper_msa_fexupr_df() local
[all …]
/qemu/include/block/
H A Dnvme.h1144 uint8_t ieee[3]; member