Home
last modified time | relevance | path

Searched refs:roundBits (Results 1 – 2 of 2) sorted by relevance

/linux-5.19.10/arch/sh/kernel/cpu/sh4/
Dsoftfloat.c363 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()
[all …]
/linux-5.19.10/arch/arm/nwfpe/
Dsoftfloat.c74 int8 roundIncrement, roundBits; in roundAndPackInt32() local
94 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() local
241 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 …]