Lines Matching refs:roundBits
363 int8 roundIncrement, roundBits; in roundAndPackFloat32() local
372 roundBits = zSig & 0x7F; in roundAndPackFloat32()
387 roundBits = zSig & 0x7F; in roundAndPackFloat32()
388 if (isTiny && roundBits) in roundAndPackFloat32()
392 if (roundBits) in roundAndPackFloat32()
395 zSig &= ~(((roundBits ^ 0x40) == 0) & roundNearestEven); in roundAndPackFloat32()
414 int16 roundIncrement, roundBits; in roundAndPackFloat64() local
423 roundBits = zSig & 0x3FF; in roundAndPackFloat64()
439 roundBits = zSig & 0x3FF; in roundAndPackFloat64()
440 if (isTiny && roundBits) in roundAndPackFloat64()
444 if (roundBits) in roundAndPackFloat64()
447 zSig &= ~(((roundBits ^ 0x200) == 0) & roundNearestEven); in roundAndPackFloat64()