Home
last modified time | relevance | path

Searched refs:float32_eq (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/arch/arm/nwfpe/
H A DARM-gcc.h90 #define float32_eq ___float32_eq macro
H A Dsoftfloat.h157 char float32_eq( float32, float32 );
H A Dsoftfloat.c1505 flag float32_eq( float32 a, float32 b ) in float32_eq() function
/openbmc/qemu/target/mips/tcg/
H A Dfpu_helper.c1904 FOP_COND_S(seq, float32_eq(fst0, fst1,
1908 || float32_eq(fst0, fst1,
2027 FOP_COND_PS(seq, float32_eq(fst0, fst1,
2029 float32_eq(fsth0, fsth1,
2033 || float32_eq(fst0, fst1,
2037 || float32_eq(fsth0, fsth1,
2208 FOP_CONDN_S(seq, (float32_eq(fst0, fst1,
2212 || float32_eq(fst0, fst1,
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h679 static inline bool float32_eq(float32 a, float32 b, float_status *s) in float32_eq() function
/openbmc/qemu/target/arm/tcg/
H A Dmve_helper.c3239 DO_VCMP_FP_BOTH(vfcmpeqs, vfcmpeq_scalars, 4, float32, float32_eq)
3242 DO_VCMP_FP_BOTH(vfcmpnes, vfcmpne_scalars, 4, float32, !float32_eq)
/openbmc/qemu/target/ppc/
H A Dfpu_helper.c1215 return float32_eq(u1.f, u2.f, &env->vec_status) ? 4 : 0; in efscmpeq()