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

  /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 );
695 roundBits = zSig0 & roundMask;
698 || ( ( zExp == 0x7FFE ) && ( zSig0 + roundIncrement < zSig0 ) )
706 || ( zSig0 <= zSig0 + roundIncrement );
707 shift64RightJamming( zSig0, 1 - zExp, &zSig0 );
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 375 the concatenation of `zSig0' and `zSig1' into a double-precision floating-
377 positions, the three fields `zSign', `zExp', and `zSig0' are simply added
379 that any integer portion of `zSig0' will be added into the exponent. Since
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 );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/
softfloat.c 376 the concatenation of `zSig0' and `zSig1' into a double-precision floating-
378 positions, the three fields `zSign', `zExp', and `zSig0' are simply added
380 that any integer portion of `zSig0' will be added into the exponent. Since
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 );
    [all...]

Completed in 86 milliseconds