HomeSort by relevance Sort by last modified time
    Searched refs:zSig1 (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 375 the concatenation of `zSig0' and `zSig1' into a double-precision floating-
382 `zSig0' and `zSig1' concatenated form a complete, normalized significand.
386 packFloat64( flag zSign, int16 zExp, bits32 zSig0, bits32 zSig1 )
391 ( ( (bits64) zSig0 )<<32 ) + zSig1 );
399 and extended significand formed by the concatenation of `zSig0', `zSig1',
420 flag zSign, int16 zExp, bits32 zSig0, bits32 zSig1, bits32 zSig2 )
444 && eq64( 0x001FFFFF, 0xFFFFFFFF, zSig0, zSig1 )
462 || lt64( zSig0, zSig1, 0x001FFFFF, 0xFFFFFFFF );
464 zSig0, zSig1, zSig2, - zExp, &zSig0, &zSig1, &zSig2 );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/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...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
softfloat.c 635 and extended significand formed by the concatenation of `zSig0' and `zSig1',
659 int8 roundingPrecision, flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1
680 zSig0 |= ( zSig1 != 0 );
736 increment = ( (sbits64) zSig1 < 0 );
743 increment = ( roundingMode == float_round_down ) && zSig1;
746 increment = ( roundingMode == float_round_up ) && zSig1;
774 shift64ExtraRightJamming( zSig0, zSig1, 1 - zExp, &zSig0, &zSig1 );
776 if ( isTiny && zSig1 ) float_raise( float_flag_underflow );
777 if ( zSig1 ) set_float_exception_inexact_flag();
    [all...]

Completed in 55 milliseconds