Searched refs:bits32 (Results 1 – 6 of 6) sorted by relevance
/arch/sh/kernel/cpu/sh4/ |
D | softfloat.c | 59 typedef unsigned int bits32; typedef 76 bits32 extractFloat32Frac(float32 a); 79 float32 packFloat32(flag zSign, int16 zExp, bits32 zSig); 80 void shift32RightJamming(bits32 a, int16 count, bits32 * zPtr); 96 static int8 countLeadingZeros32(bits32 a); 102 static float32 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig); 104 bits32 zSig); 111 static void normalizeFloat32Subnormal(bits32 aSig, int16 * zExpPtr, 112 bits32 * zSigPtr); 139 bits32 extractFloat32Frac(float32 a) in extractFloat32Frac() [all …]
|
/arch/arm/nwfpe/ |
D | softfloat.c | 113 INLINE bits32 extractFloat32Frac( float32 a ) in extractFloat32Frac() 155 normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr ) in normalizeFloat32Subnormal() 177 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32() 190 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig; in packFloat32() 217 static float32 roundAndPackFloat32( struct roundingData *roundData, flag zSign, int16 zExp, bits32 … in roundAndPackFloat32() 280 normalizeRoundAndPackFloat32( struct roundingData *roundData, flag zSign, int16 zExp, bits32 zSig ) in normalizeRoundAndPackFloat32() 604 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80() 658 if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) { in roundAndPackFloatx80() 839 bits32 aSig; in float32_to_int32() 870 bits32 aSig; in float32_to_int32_round_to_zero() [all …]
|
D | ARM-gcc.h | 43 typedef unsigned int bits32; typedef
|
D | softfloat.h | 240 return (a == b) || ((bits32) ((a | b) << 1) == 0); in float32_eq_nocheck() 250 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; 603 static bits32 estimateSqrt32( int16 aExp, bits32 a ) 614 bits32 z; 627 if ( z <= a ) return (bits32) ( ( (sbits32) a )>>1 ); 631 return ( (bits32) A ) + ( z>>1 ); 641 static int8 countLeadingZeros32( bits32 a )
|
D | softfloat-specialize | 85 return ( 0xFF000000 < (bits32) ( a<<1 ) ); 130 return ( ( (bits32) a.sign )<<31 ) | 0x7FC00000 | ( a.high>>41 );
|