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

  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
softfloat.c 126 int8 roundIncrement, roundBits;
146 roundBits = (int8)(absZ & 0x7F);
148 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
155 if ( roundBits ) set_float_exception_inexact_flag();
316 int8 roundIncrement, roundBits;
336 roundBits = zSig & 0x7F;
352 roundBits = zSig & 0x7F;
353 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
356 if ( roundBits ) set_float_exception_inexact_flag();
358 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 212 int8 roundIncrement, roundBits;
232 roundBits = zSig & 0x7F;
248 roundBits = zSig & 0x7F;
249 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
252 if ( roundBits ) set_float_exception_inexact_flag();
254 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits32/
softfloat.c 213 int8 roundIncrement, roundBits;
233 roundBits = zSig & 0x7F;
249 roundBits = zSig & 0x7F;
250 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
253 if ( roundBits ) set_float_exception_inexact_flag();
255 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
    [all...]

Completed in 50 milliseconds