Home
last modified time | relevance | path

Searched refs:shiftCount (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/fpu/
H A Dsoftfloat.c5002 int8_t shiftCount; in normalizeFloatx80Subnormal() local
5004 shiftCount = clz64(aSig); in normalizeFloatx80Subnormal()
5005 *zSigPtr = aSig<<shiftCount; in normalizeFloatx80Subnormal()
5006 *zExpPtr = 1 - shiftCount; in normalizeFloatx80Subnormal()
5254 int8_t shiftCount; in normalizeRoundAndPackFloatx80() local
5261 shiftCount = clz64(zSig0); in normalizeRoundAndPackFloatx80()
5262 shortShift128Left( zSig0, zSig1, shiftCount, &zSig0, &zSig1 ); in normalizeRoundAndPackFloatx80()
5263 zExp -= shiftCount; in normalizeRoundAndPackFloatx80()
/openbmc/qemu/target/m68k/
H A Dsoftfloat.c123 int32_t aExp, bExp, shiftCount; in floatx80_scale() local
167 shiftCount = 0x403E - bExp; in floatx80_scale()
168 bSig >>= shiftCount; in floatx80_scale()