HomeSort by: relevance | last modified time | path
    Searched defs:aSig1 (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/softfloat/bits32/
softfloat.c 335 `aSig1'. The normalized exponent is stored at the location pointed to by
345 bits32 aSig1,
354 shiftCount = countLeadingZeros32( aSig1 ) - 11;
356 *zSig0Ptr = aSig1>>( - shiftCount );
357 *zSig1Ptr = aSig1<<( shiftCount & 31 );
360 *zSig0Ptr = aSig1<<shiftCount;
367 shortShift64Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
1419 bits32 aSig0, aSig1, absZ, aSigExtra;
1423 aSig1 = extractFloat64Frac1( a );
1430 if ( ( aExp == 0x7FF ) && ( aSig0 | aSig1 ) ) aSign = 0
    [all...]
  /src/sys/lib/libkern/
softfloat.c 889 | `aSig0' and `aSig1'. The normalized exponent is stored at the location
899 bits64 aSig1,
908 shiftCount = countLeadingZeros64( aSig1 ) - 15;
910 *zSig0Ptr = aSig1>>( - shiftCount );
911 *zSig1Ptr = aSig1<<( shiftCount & 63 );
914 *zSig0Ptr = aSig1<<shiftCount;
921 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
3838 bits64 aSig0, aSig1, bSig;
3876 aSig1 = 0;
3879 shift128Right( aSig0, 0, 1, &aSig0, &aSig1 );
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 908 `aSig0' and `aSig1'. The normalized exponent is stored at the location
918 bits64 aSig1,
927 shiftCount = countLeadingZeros64( aSig1 ) - 15;
929 *zSig0Ptr = aSig1>>( - shiftCount );
930 *zSig1Ptr = aSig1<<( shiftCount & 63 );
933 *zSig0Ptr = aSig1<<shiftCount;
940 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
3987 bits64 aSig0, aSig1, bSig;
4025 aSig1 = 0;
4028 shift128Right( aSig0, 0, 1, &aSig0, &aSig1 );
    [all...]

Completed in 18 milliseconds