Searched defs:roundBits (Results 1 - 1 of 1) sorted by relevance

/vbox/src/recompiler/fpu/
H A Dsoftfloat.c86 int8 roundIncrement, roundBits; local
106 roundBits = absZ & 0x7F;
108 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
115 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact;
269 int8 roundIncrement, roundBits; local
289 roundBits = zSig & 0x7F;
306 roundBits = zSig & 0x7F;
307 if ( isTiny && roundBits ) float_raise( float_flag_underflow STATUS_VAR);
310 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact;
312 zSig &= ~ ( ( ( roundBits
433 int16 roundIncrement, roundBits; local
603 int64 roundIncrement, roundMask, roundBits; local
[all...]

Completed in 57 milliseconds