Lines Matching refs:roundMask
664 uint64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
671 roundMask = LIT64( 0x00000000000007FF ); in roundAndPackFloatx80()
675 roundMask = LIT64( 0x000000FFFFFFFFFF ); in roundAndPackFloatx80()
686 roundIncrement = roundMask; in roundAndPackFloatx80()
695 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
709 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
714 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
716 roundMask |= roundIncrement; in roundAndPackFloatx80()
718 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
728 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
730 roundMask |= roundIncrement; in roundAndPackFloatx80()
732 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
757 roundMask = 0; in roundAndPackFloatx80()
764 return packFloatx80( zSign, 0x7FFE, ~ roundMask ); in roundAndPackFloatx80()