Searched refs:roundBits (Results 1 - 5 of 5) sorted by path

/freebsd-11-stable/lib/libc/softfloat/bits32/
H A Dsoftfloat.c205 int8 roundIncrement, roundBits; local
225 roundBits = zSig & 0x7F;
241 roundBits = zSig & 0x7F;
242 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
245 if ( roundBits ) float_exception_flags |= float_flag_inexact;
247 zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
/freebsd-11-stable/lib/libc/softfloat/bits64/
H A Dsoftfloat.c118 int8 roundIncrement, roundBits; local
138 roundBits = absZ & 0x7F;
140 absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
147 if ( roundBits ) float_exception_flags |= float_flag_inexact;
308 int8 roundIncrement, roundBits; local
328 roundBits = zSig & 0x7F;
344 roundBits = zSig & 0x7F;
345 if ( isTiny && roundBits ) float_raise( float_flag_underflow );
348 if ( roundBits ) float_exception_flags |= float_flag_inexact;
350 zSig &= ~ ( ( ( roundBits
478 int16 roundIncrement, roundBits; local
656 int64 roundIncrement, roundMask, roundBits; local
[all...]
/freebsd-11-stable/tools/test/testfloat/
H A Dslowfloat-32.c153 int8 roundBits; local
155 roundBits = zx.sig.a1 & 7;
156 zx.sig.a1 -= roundBits;
157 if ( roundBits ) {
162 if ( roundBits < 4 ) goto noIncrement;
163 if ( ( roundBits == 4 ) && ! ( zx.sig.a1 & 8 ) ) goto noIncrement;
H A Dslowfloat-64.c122 bits32 roundBits; local
126 roundBits = zx.sig.a0 & 0xFFFFFFFF;
127 zx.sig.a0 -= roundBits;
128 if ( roundBits ) {
133 if ( roundBits < 0x80000000 ) goto noIncrement;
134 if ( ( roundBits == 0x80000000 )
161 int8 roundBits; local
165 roundBits = zx.sig.a0 & 7;
166 zx.sig.a0 -= roundBits;
167 if ( roundBits ) {
197 int64 roundBits; local
235 int8 roundBits; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_trunc_impl.inc85 const src_rep_t roundBits = aAbs & roundMask;
87 if (roundBits > halfway)
90 else if (roundBits == halfway)
119 const src_rep_t roundBits = denormalizedSignificand & roundMask;
121 if (roundBits > halfway)
124 else if (roundBits == halfway)

Completed in 154 milliseconds