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

  /src/lib/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 );
  /src/sys/lib/libkern/
softfloat.c 109 int8 roundIncrement, roundBits;
129 roundBits = absZ & 0x7F;
131 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
138 if ( roundBits ) float_set_inexact();
324 int8 roundIncrement, roundBits;
344 roundBits = zSig & 0x7F;
360 roundBits = zSig & 0x7F;
361 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
364 if ( roundBits ) float_set_inexact();
366 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven )
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 129 int8 roundIncrement, roundBits;
149 roundBits = (int8)(absZ & 0x7F);
151 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
158 if ( roundBits ) set_float_exception_inexact_flag();
319 int8 roundIncrement, roundBits;
339 roundBits = zSig & 0x7F;
355 roundBits = zSig & 0x7F;
356 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
359 if ( roundBits ) set_float_exception_inexact_flag();
361 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven )
    [all...]

Completed in 16 milliseconds