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

  /src/lib/libc/softfloat/bits32/
softfloat.c 376 the concatenation of `zSig0' and `zSig1' into a double-precision floating-
383 `zSig0' and `zSig1' concatenated form a complete, normalized significand.
387 packFloat64( flag zSign, int16 zExp, bits32 zSig0, bits32 zSig1 )
392 ( ( (bits64) zSig0 )<<32 ) + zSig1 );
400 and extended significand formed by the concatenation of `zSig0', `zSig1',
421 flag zSign, int16 zExp, bits32 zSig0, bits32 zSig1, bits32 zSig2 )
445 && eq64( 0x001FFFFF, 0xFFFFFFFF, zSig0, zSig1 )
463 || lt64( zSig0, zSig1, 0x001FFFFF, 0xFFFFFFFF );
465 zSig0, zSig1, zSig2, - zExp, &zSig0, &zSig1, &zSig2 )
    [all...]
  /src/sys/lib/libkern/
softfloat.c 625 | and extended significand formed by the concatenation of `zSig0' and `zSig1',
649 int8 roundingPrecision, flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1
670 zSig0 |= ( zSig1 != 0 );
726 increment = ( (sbits64) zSig1 < 0 );
733 increment = ( roundingMode == float_round_down ) && zSig1;
736 increment = ( roundingMode == float_round_up ) && zSig1;
764 shift64ExtraRightJamming( zSig0, zSig1, 1 - zExp, &zSig0, &zSig1 );
766 if ( isTiny && zSig1 ) float_raise( float_flag_underflow );
767 if ( zSig1 ) float_set_inexact()
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 638 and extended significand formed by the concatenation of `zSig0' and `zSig1',
662 int8 roundingPrecision, flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1
683 zSig0 |= ( zSig1 != 0 );
739 increment = ( (sbits64) zSig1 < 0 );
746 increment = ( roundingMode == float_round_down ) && zSig1;
749 increment = ( roundingMode == float_round_up ) && zSig1;
777 shift64ExtraRightJamming( zSig0, zSig1, 1 - zExp, &zSig0, &zSig1 );
779 if ( isTiny && zSig1 ) float_raise( float_flag_underflow );
780 if ( zSig1 ) set_float_exception_inexact_flag()
    [all...]

Completed in 106 milliseconds