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

/freebsd-10.2-release/lib/libc/softfloat/bits64/
H A Dsoftfloat.c950 packFloat128( flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1 ) function
1023 packFloat128(
1030 return packFloat128( zSign, 0x7FFF, 0, 0 );
1068 return packFloat128( zSign, zExp, zSig0, zSig1 );
1231 if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
1236 return packFloat128( zSign, 0x402E - shiftCount, zSig0<<shiftCount, 0 );
1245 if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
1247 return packFloat128( 0, 0x402E - shiftCount, zSig0<<shiftCount, 0 );
1352 if ( a == 0 ) return packFloat128( 0, 0, 0, 0 );
1367 return packFloat128( zSig
[all...]

Completed in 84 milliseconds