Searched refs:aSig1 (Results 1 – 2 of 2) sorted by relevance
| /openbsd/src/lib/libc/softfloat/ |
| D | softfloat.c | 335 bits32 aSig1, in normalizeFloat64Subnormal() argument 344 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal() 346 *zSig0Ptr = aSig1>>( - shiftCount ); in normalizeFloat64Subnormal() 347 *zSig1Ptr = aSig1<<( shiftCount & 31 ); in normalizeFloat64Subnormal() 350 *zSig0Ptr = aSig1<<shiftCount; in normalizeFloat64Subnormal() 357 shortShift64Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr ); in normalizeFloat64Subnormal() 1409 bits32 aSig0, aSig1, absZ, aSigExtra; in float64_to_int32() local 1413 aSig1 = extractFloat64Frac1( a ); in float64_to_int32() 1420 if ( ( aExp == 0x7FF ) && ( aSig0 | aSig1 ) ) aSign = 0; in float64_to_int32() 1424 aSig0 | 0x00100000, aSig1, shiftCount, &absZ, &aSigExtra ); in float64_to_int32() [all …]
|
| /openbsd/src/sys/lib/libkern/ |
| D | softfloat.c | 963 bits64 aSig1, in normalizeFloat128Subnormal() argument 972 shiftCount = countLeadingZeros64( aSig1 ) - 15; in normalizeFloat128Subnormal() 974 *zSig0Ptr = aSig1>>( - shiftCount ); in normalizeFloat128Subnormal() 975 *zSig1Ptr = aSig1<<( shiftCount & 63 ); in normalizeFloat128Subnormal() 978 *zSig0Ptr = aSig1<<shiftCount; in normalizeFloat128Subnormal() 985 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr ); in normalizeFloat128Subnormal() 3980 bits64 aSig0, aSig1, bSig; in floatx80_rem() local 4018 aSig1 = 0; in floatx80_rem() 4021 shift128Right( aSig0, 0, 1, &aSig0, &aSig1 ); in floatx80_rem() 4028 q = estimateDiv128To64( aSig0, aSig1, bSig ); in floatx80_rem() [all …]
|