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

  /external/compiler-rt/lib/
truncdfsf2.c 113 const src_rep_t roundBits = aAbs & roundMask;
116 if (roundBits > halfway)
120 else if (roundBits == halfway)
154 const src_rep_t roundBits = denormalizedSignificand & roundMask;
156 if (roundBits > halfway)
159 else if (roundBits == halfway)
  /external/qemu/fpu/
softfloat.c 116 int8 roundIncrement, roundBits;
136 roundBits = absZ & 0x7F;
138 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
145 if ( roundBits ) STATUS(float_exception_flags) |= float_flag_inexact;
314 int8 roundIncrement, roundBits;
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 ^ 0x40 ) == 0 ) & roundNearestEven )
    [all...]

Completed in 58 milliseconds