Searched refs:roundBits (Results 1 – 2 of 2) sorted by relevance
363 int8 roundIncrement, roundBits; in roundAndPackFloat32() local372 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() local423 roundBits = zSig & 0x3FF; in roundAndPackFloat64()439 roundBits = zSig & 0x3FF; in roundAndPackFloat64()440 if (isTiny && roundBits) in roundAndPackFloat64()[all …]
74 int8 roundIncrement, roundBits; in roundAndPackInt32() local94 roundBits = absZ & 0x7F; in roundAndPackInt32()96 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven ); in roundAndPackInt32()103 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackInt32()221 int8 roundIncrement, roundBits; in roundAndPackFloat32() local241 roundBits = zSig & 0x7F; in roundAndPackFloat32()257 roundBits = zSig & 0x7F; in roundAndPackFloat32()258 if ( isTiny && roundBits ) roundData->exception |= float_flag_underflow; in roundAndPackFloat32()261 if ( roundBits ) roundData->exception |= float_flag_inexact; in roundAndPackFloat32()263 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven ); in roundAndPackFloat32()[all …]