Lines Matching refs:roundMask
656 int64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
663 roundMask = LIT64( 0x00000000000007FF ); in roundAndPackFloatx80()
667 roundMask = LIT64( 0x000000FFFFFFFFFF ); in roundAndPackFloatx80()
678 roundIncrement = roundMask; in roundAndPackFloatx80()
687 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
701 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
706 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
708 roundMask |= roundIncrement; in roundAndPackFloatx80()
710 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
720 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
722 roundMask |= roundIncrement; in roundAndPackFloatx80()
724 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
749 roundMask = 0; in roundAndPackFloatx80()
756 return packFloatx80( zSign, 0x7FFE, ~ roundMask ); in roundAndPackFloatx80()