Searched refs:bits32 (Results 1 – 5 of 5) sorted by relevance
/linux-2.4.37.9/arch/arm/nwfpe/ |
D | softfloat.c | 121 INLINE bits32 extractFloat32Frac( float32 a ) in extractFloat32Frac() 163 normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr ) in normalizeFloat32Subnormal() 185 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32() 198 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig; in packFloat32() 225 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in roundAndPackFloat32() 288 normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig ) in normalizeRoundAndPackFloat32() 610 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80() 664 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80() 845 bits32 aSig; in float32_to_int32() 876 bits32 aSig; in float32_to_int32_round_to_zero() [all …]
|
D | softfloat.h | 241 return (a == b) || ((bits32) ((a | b) << 1) == 0); in float32_eq_nocheck() 251 return aSign && ((bits32) ((a | b) << 1) != 0); in float32_lt_nocheck()
|
D | softfloat-macros | 42 INLINE void shift32RightJamming( bits32 a, int16 count, bits32 *zPtr ) 44 bits32 z; 462 bits32 aHigh, aLow, bHigh, bLow; 592 static bits32 estimateSqrt32( int16 aExp, bits32 a ) 603 bits32 z; 615 if ( z <= a ) return (bits32) ( ( (sbits32) a )>>1 ); 617 return ( (bits32) ( ( ( (bits64) a )<<31 ) / z ) ) + ( z>>1 ); 627 static int8 countLeadingZeros32( bits32 a )
|
D | ARM-gcc.h | 43 typedef unsigned int bits32; typedef
|
D | softfloat-specialize | 85 return ( 0xFF000000 < (bits32) ( a<<1 ) ); 130 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
|