Searched refs:packFloat64 (Results 1 - 2 of 2) sorted by relevance

/linux-master/arch/sh/kernel/cpu/sh4/
H A Dsoftfloat.c77 float64 packFloat64(flag zSign, int16 zExp, bits64 zSig);
144 float64 packFloat64(flag zSign, int16 zExp, bits64 zSig) function
249 return packFloat64(float_rounding_mode() == FPSCR_RM_ZERO, 0, 0);
252 return packFloat64(zSign ^ 1, 0x7FF, 0);
311 return packFloat64(zSign, 0x7FF, 0);
325 return packFloat64(zSign, 0, (aSig + bSig) >> 9);
430 return packFloat64(zSign, 0x7FF,
450 return packFloat64(zSign, zExp, zSig);
734 return packFloat64(zSign, 0x7FF, 0);
737 return packFloat64(zSig
[all...]
/linux-master/arch/arm/nwfpe/
H A Dsoftfloat.c358 INLINE float64 packFloat64( flag zSign, int16 zExp, bits64 zSig ) function
421 return packFloat64( zSign, 0x7FF, 0 ) - ( roundIncrement == 0 );
438 return packFloat64( zSign, zExp, zSig );
792 return packFloat64( aSign, 0x432 - shiftCount, zSig<<shiftCount );
915 return packFloat64( aSign, 0x7FF, 0 );
918 if ( aSig == 0 ) return packFloat64( aSign, 0, 0 );
922 return packFloat64( aSign, aExp + 0x380, ( (bits64) aSig )<<29 );
1885 return packFloat64( aSign, 0x3FF, 0 );
1894 return packFloat64( aSign, 0, 0 );
1955 return packFloat64( zSig
[all...]

Completed in 90 milliseconds