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

/external/compiler-rt/lib/
H A Dtruncdfsf2.c113 const src_rep_t roundBits = aAbs & roundMask; local
116 if (roundBits > halfway)
120 else if (roundBits == halfway)
154 const src_rep_t roundBits = denormalizedSignificand & roundMask; local
156 if (roundBits > halfway)
159 else if (roundBits == halfway)
/external/qemu/fpu/
H A Dsoftfloat.c116 int8 roundIncrement, roundBits; local
136 roundBits = absZ & 0x7F;
138 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
145 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact;
314 int8 roundIncrement, roundBits; local
334 roundBits = zSig & 0x7F;
354 roundBits = zSig & 0x7F;
355 if ( isTiny && roundBits ) float_raise( float_flag_underflow STATUS_VAR);
358 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact;
360 zSig &= ~ ( ( ( roundBits
496 int16 roundIncrement, roundBits; local
669 int64 roundIncrement, roundMask, roundBits; local
[all...]

Completed in 113 milliseconds