Searched refs:float16_compare (Results 1 – 5 of 5) sorted by relevance
/openbmc/qemu/include/fpu/ |
H A D | softfloat.h | 252 FloatRelation float16_compare(float16, float16, float_status *status); 312 return float16_compare(a, b, s) == float_relation_equal; in float16_eq() 317 return float16_compare(a, b, s) <= float_relation_equal; in float16_le() 322 return float16_compare(a, b, s) < float_relation_equal; in float16_lt() 327 return float16_compare(a, b, s) == float_relation_unordered; in float16_unordered()
|
/openbmc/qemu/target/arm/tcg/ |
H A D | helper-a64.c | 140 return float_rel_to_flags(float16_compare(x, y, fp_status)); in HELPER() 629 int compare = float16_compare(a, b, fpst); in HELPER() 637 int compare = float16_compare(a, b, fpst); in HELPER() 646 int compare = float16_compare(f0, f1, fpst); in HELPER() 656 int compare = float16_compare(f0, f1, fpst); in HELPER()
|
/openbmc/qemu/tests/fp/ |
H A D | wrap.c.inc | 600 WRAP_CMP16(qemu_f16_eq_signaling, float16_compare, ret == 0) 602 WRAP_CMP16(qemu_f16_le, float16_compare, ret <= 0) 603 WRAP_CMP16(qemu_f16_lt, float16_compare, ret < 0)
|
/openbmc/qemu/target/riscv/ |
H A D | vector_helper.c | 4352 FloatRelation compare = float16_compare(a, b, s); in GEN_VEXT_CMP_VV_ENV() 4374 FloatRelation compare = float16_compare(a, b, s); in GEN_VEXT_CMP_VF()
|
/openbmc/qemu/fpu/ |
H A D | softfloat.c | 4353 FloatRelation float16_compare(float16 a, float16 b, float_status *s) in float16_compare() function
|