Lines Matching refs:roundMask
653 int64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
660 roundMask = LIT64( 0x00000000000007FF ); in roundAndPackFloatx80()
664 roundMask = LIT64( 0x000000FFFFFFFFFF ); in roundAndPackFloatx80()
675 roundIncrement = roundMask; in roundAndPackFloatx80()
684 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
698 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
703 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
705 roundMask |= roundIncrement; in roundAndPackFloatx80()
707 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
717 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
719 roundMask |= roundIncrement; in roundAndPackFloatx80()
721 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
746 roundMask = 0; in roundAndPackFloatx80()
753 return packFloatx80( zSign, 0x7FFE, ~ roundMask ); in roundAndPackFloatx80()