Home
last modified time | relevance | path

Searched refs:bits32 (Results 1 – 4 of 4) sorted by relevance

/external/qemu/fpu/
Dsoftfloat-specialize.h85 return ( 0xFF800000 <= (bits32) ( a<<1 ) ); in float32_is_nan()
98 return ( 0xFF800000 <= (bits32) ( a<<1 ) ); in float32_is_signaling_nan()
128 bits32 mantissa = a.high>>41; in commonNaNToFloat32()
131 ( ( (bits32) a.sign )<<31 ) | 0x7F800000 | ( a.high>>41 ) ); in commonNaNToFloat32()
145 bits32 av, bv, res; in propagateFloat32NaN()
173 if ( (bits32) ( av<<1 ) < (bits32) ( bv<<1 ) ) in propagateFloat32NaN()
175 else if ( (bits32) ( bv<<1 ) < (bits32) ( av<<1 ) ) in propagateFloat32NaN()
Dsoftfloat-macros.h42 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr ) in shift32RightJamming()
44 bits32 z; in shift32RightJamming()
451 bits32 aHigh, aLow, bHigh, bLow; in mul64To128()
578 static bits32 estimateSqrt32( int16 aExp, bits32 a ) in estimateSqrt32()
589 bits32 z; in estimateSqrt32()
601 if ( z <= a ) return (bits32) ( ( (sbits32) a )>>1 ); in estimateSqrt32()
603 return ( (bits32) ( ( ( (bits64) a )<<31 ) / z ) ) + ( z>>1 ); in estimateSqrt32()
612 static int8 countLeadingZeros32( bits32 a ) in countLeadingZeros32()
Dsoftfloat.c177 INLINE bits32 extractFloat32Frac( float32 a ) in extractFloat32Frac()
214 normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr ) in normalizeFloat32Subnormal()
235 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32()
239 ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig); in packFloat32()
265 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig STATUS_PARAM) in roundAndPackFloat32()
328 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig STATUS_PARAM) in normalizeRoundAndPackFloat32()
635 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80()
690 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80()
945 if ( 0x7FFD <= (bits32) zExp ) { in roundAndPackFloat128()
1298 bits32 aSig; in float32_to_int32()
[all …]
Dsoftfloat.h72 typedef uint32_t bits32; typedef