Home
last modified time | relevance | path

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

/openbmc/qemu/fpu/
H A Dsoftfloat.c5058 int64_t roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
5067 roundMask = UINT64_C(0x00000000000007FF); in roundAndPackFloatx80()
5071 roundMask = UINT64_C(0x000000FFFFFFFFFF); in roundAndPackFloatx80()
5085 roundIncrement = zSign ? 0 : roundMask; in roundAndPackFloatx80()
5088 roundIncrement = zSign ? roundMask : 0; in roundAndPackFloatx80()
5093 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
5110 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
5119 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
5121 roundMask |= roundIncrement; in roundAndPackFloatx80()
5123 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
[all …]