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

  /src/lib/libc/softfloat/bits32/
softfloat.c 334 by the denormalized significand formed by the concatenation of `aSig0' and
344 bits32 aSig0,
353 if ( aSig0 == 0 ) {
366 shiftCount = countLeadingZeros32( aSig0 ) - 11;
367 shortShift64Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
1419 bits32 aSig0, aSig1, absZ, aSigExtra;
1424 aSig0 = extractFloat64Frac0( a );
1430 if ( ( aExp == 0x7FF ) && ( aSig0 | aSig1 ) ) aSign = 0;
1434 aSig0 | 0x00100000, aSig1, shiftCount, &absZ, &aSigExtra );
1440 aSigExtra = aExp | aSig0 | aSig1
    [all...]
  /src/sys/lib/libkern/
softfloat.c 889 | `aSig0' and `aSig1'. The normalized exponent is stored at the location
898 bits64 aSig0,
907 if ( aSig0 == 0 ) {
920 shiftCount = countLeadingZeros64( aSig0 ) - 15;
921 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
3838 bits64 aSig0, aSig1, bSig;
3842 aSig0 = extractFloatx80Frac( a );
3849 if ( (bits64) ( aSig0<<1 )
3870 if ( (bits64) ( aSig0<<1 ) == 0 ) return a;
3871 normalizeFloatx80Subnormal( aSig0, &aExp, &aSig0 )
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 908 `aSig0' and `aSig1'. The normalized exponent is stored at the location
917 bits64 aSig0,
926 if ( aSig0 == 0 ) {
939 shiftCount = countLeadingZeros64( aSig0 ) - 15;
940 shortShift128Left( aSig0, aSig1, shiftCount, zSig0Ptr, zSig1Ptr );
3987 bits64 aSig0, aSig1, bSig;
3991 aSig0 = extractFloatx80Frac( a );
3998 if ( (bits64) ( aSig0<<1 )
4019 if ( (bits64) ( aSig0<<1 ) == 0 ) return a;
4020 normalizeFloatx80Subnormal( aSig0, &aExp, &aSig0 )
    [all...]

Completed in 20 milliseconds