Home
last modified time | relevance | path

Searched refs:aExp (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/m68k/
H A Dsoftfloat.c53 int32_t aExp; in floatx80_getman() local
57 aExp = extractFloatx80Exp(a); in floatx80_getman()
60 if (aExp == 0x7FFF) { in floatx80_getman()
68 if (aExp == 0) { in floatx80_getman()
72 normalizeFloatx80Subnormal(aSig, &aExp, &aSig); in floatx80_getman()
87 int32_t aExp; in floatx80_getexp() local
91 aExp = extractFloatx80Exp(a); in floatx80_getexp()
94 if (aExp == 0x7FFF) { in floatx80_getexp()
102 if (aExp == 0) { in floatx80_getexp()
106 normalizeFloatx80Subnormal(aSig, &aExp, &aSig); in floatx80_getexp()
[all …]
/openbmc/qemu/target/tricore/
H A Dfpu_helper.c56 uint32_t aExp, bExp, cExp; in f_maddsub_nan_result() local
70 aExp = (arg1 >> 23) & 0xff; in f_maddsub_nan_result()
77 if (((aExp == 0xff) || (bExp == 0xff)) && (cExp == 0xff)) { in f_maddsub_nan_result()
/openbmc/qemu/include/fpu/
H A Dsoftfloat-macros.h593 static inline uint32_t estimateSqrt32(int aExp, uint32_t a) in estimateSqrt32() argument
607 if ( aExp & 1 ) { in estimateSqrt32()