Searched refs:zSign (Results 1 – 2 of 2) sorted by relevance
/linux-3.4.99/arch/sh/kernel/cpu/sh4/ |
D | softfloat.c | 77 float64 packFloat64(flag zSign, int16 zExp, bits64 zSig); 79 float32 packFloat32(flag zSign, int16 zExp, bits32 zSig); 98 static float64 normalizeRoundAndPackFloat64(flag zSign, int16 zExp, 100 static float64 subFloat64Sigs(float64 a, float64 b, flag zSign); 101 static float64 addFloat64Sigs(float64 a, float64 b, flag zSign); 102 static float32 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig); 103 static float32 normalizeRoundAndPackFloat32(flag zSign, int16 zExp, 105 static float64 roundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig); 106 static float32 subFloat32Sigs(float32 a, float32 b, flag zSign); 107 static float32 addFloat32Sigs(float32 a, float32 b, flag zSign); [all …]
|
/linux-3.4.99/arch/arm/nwfpe/ |
D | softfloat.c | 70 static int32 roundAndPackInt32( struct roundingData *roundData, flag zSign, bits64 absZ ) in roundAndPackInt32() argument 86 if ( zSign ) { in roundAndPackInt32() 98 if ( zSign ) z = - z; in roundAndPackInt32() 99 if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) { in roundAndPackInt32() 101 return zSign ? 0x80000000 : 0x7FFFFFFF; in roundAndPackInt32() 177 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig ) in packFloat32() argument 186 : "g" (f), "g" (zSign), "g" (zExp), "g" (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() argument 233 if ( zSign ) { in roundAndPackFloat32() [all …]
|