Home
last modified time | relevance | path

Searched refs:aSig1 (Results 1 – 2 of 2) sorted by relevance

/trueos/lib/libc/softfloat/bits32/
HDsoftfloat.c337 bits32 aSig1, in normalizeFloat64Subnormal() argument
346 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal()
348 *zSig0Ptr = aSig1>>( - shiftCount ); in normalizeFloat64Subnormal()
349 *zSig1Ptr = aSig1<<( shiftCount & 31 ); in normalizeFloat64Subnormal()
352 *zSig0Ptr = aSig1<<shiftCount; in normalizeFloat64Subnormal()
359 shortShift64Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr ); in normalizeFloat64Subnormal()
1411 bits32 aSig0, aSig1, absZ, aSigExtra; in float64_to_int32() local
1415 aSig1 = extractFloat64Frac1( a ); in float64_to_int32()
1422 if ( ( aExp == 0x7FF ) && ( aSig0 | aSig1 ) ) aSign = 0; in float64_to_int32()
1426 aSig0 | 0x00100000, aSig1, shiftCount, &absZ, &aSigExtra ); in float64_to_int32()
[all …]
/trueos/lib/libc/softfloat/bits64/
HDsoftfloat.c907 bits64 aSig1, in normalizeFloat128Subnormal() argument
916 shiftCount = countLeadingZeros64( aSig1 ) - 15; in normalizeFloat128Subnormal()
918 *zSig0Ptr = aSig1>>( - shiftCount ); in normalizeFloat128Subnormal()
919 *zSig1Ptr = aSig1<<( shiftCount & 63 ); in normalizeFloat128Subnormal()
922 *zSig0Ptr = aSig1<<shiftCount; in normalizeFloat128Subnormal()
929 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr ); in normalizeFloat128Subnormal()
3939 bits64 aSig0, aSig1, bSig; in floatx80_rem() local
3977 aSig1 = 0; in floatx80_rem()
3980 shift128Right( aSig0, 0, 1, &aSig0, &aSig1 ); in floatx80_rem()
3987 q = estimateDiv128To64( aSig0, aSig1, bSig ); in floatx80_rem()
[all …]