Searched refs:zSig (Results 1 - 2 of 2) sorted by last modified time

/linux-master/arch/sh/kernel/cpu/sh4/
H A Dsoftfloat.c77 float64 packFloat64(flag zSign, int16 zExp, bits64 zSig);
79 float32 packFloat32(flag zSign, int16 zExp, bits32 zSig);
99 bits64 zSig);
102 static float32 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig);
104 bits32 zSig);
105 static float64 roundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig);
144 float64 packFloat64(flag zSign, int16 zExp, bits64 zSig) argument
146 return (((bits64) zSign) << 63) + (((bits64) zExp) << 52) + zSig;
214 static float64 normalizeRoundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig) argument
218 shiftCount = countLeadingZeros64(zSig)
227 bits64 aSig, bSig, zSig; local
288 bits64 aSig, bSig, zSig; local
342 packFloat32(flag zSign, int16 zExp, bits32 zSig) argument
360 roundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig) argument
402 normalizeRoundAndPackFloat32(flag zSign, int16 zExp, bits32 zSig) argument
411 roundAndPackFloat64(flag zSign, int16 zExp, bits64 zSig) argument
457 bits32 aSig, bSig, zSig; local
519 bits32 aSig, bSig, zSig; local
720 bits64 aSig, bSig, zSig; local
779 uint64_t zSig; local
830 unsigned int zSig; local
917 bits32 zSig; local
[all...]
/linux-master/arch/arm/nwfpe/
H A Dsoftfloat.c167 Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
170 together to form the result. This means that any integer portion of `zSig'
173 than the desired result exponent whenever `zSig' is a complete, normalized
177 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
186 : "g" (f), "g" (zSign), "g" (zExp), "g" (zSig)
190 return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
197 and significand `zSig', and returns the proper single-precision floating-
207 The input significand `zSig' has its binary point between bits 30
209 significand must be normalized or smaller. If `zSig' is not normalized,
211 and it must not require rounding. In the usual case that `zSig' i
785 bits64 zSig; local
811 bits64 zSig; local
840 bits64 zSig; local
1032 bits32 aSig, bSig, zSig; local
1104 bits32 aSig, bSig, zSig; local
1225 bits32 zSig; local
1284 bits32 aSig, bSig, zSig; local
1454 bits32 aSig, zSig; local
1801 bits32 zSig; local
1928 bits64 aSig, bSig, zSig; local
2000 bits64 aSig, bSig, zSig; local
2178 bits64 aSig, bSig, zSig; local
2335 bits64 aSig, zSig; local
2645 bits64 aSig, zSig; local
[all...]

Completed in 141 milliseconds