Lines Matching refs:roundMask
571 int64 roundIncrement, roundMask, roundBits; in roundAndPackFloatx80() local
579 roundMask = LIT64( 0x00000000000007FF ); in roundAndPackFloatx80()
583 roundMask = LIT64( 0x000000FFFFFFFFFF ); in roundAndPackFloatx80()
594 roundIncrement = roundMask; in roundAndPackFloatx80()
603 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
617 roundBits = zSig0 & roundMask; in roundAndPackFloatx80()
622 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
624 roundMask |= roundIncrement; in roundAndPackFloatx80()
626 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
636 roundIncrement = roundMask + 1; in roundAndPackFloatx80()
638 roundMask |= roundIncrement; in roundAndPackFloatx80()
640 zSig0 &= ~ roundMask; in roundAndPackFloatx80()
665 roundMask = 0; in roundAndPackFloatx80()
672 return packFloatx80( zSign, 0x7FFE, ~ roundMask ); in roundAndPackFloatx80()