Searched refs:roundIncrement (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.3-release/lib/libc/softfloat/bits64/
H A Dsoftfloat.c118 int8 roundIncrement, roundBits; local
123 roundIncrement = 0x40;
126 roundIncrement = 0;
129 roundIncrement = 0x7F;
131 if ( roundingMode == float_round_up ) roundIncrement = 0;
134 if ( roundingMode == float_round_down ) roundIncrement = 0;
139 absZ = ( absZ + roundIncrement )>>7;
308 int8 roundIncrement, roundBits; local
313 roundIncrement = 0x40;
316 roundIncrement
478 int16 roundIncrement, roundBits; local
656 int64 roundIncrement, roundMask, roundBits; local
[all...]
/freebsd-10.3-release/lib/libc/softfloat/bits32/
H A Dsoftfloat.c205 int8 roundIncrement, roundBits; local
210 roundIncrement = 0x40;
213 roundIncrement = 0;
216 roundIncrement = 0x7F;
218 if ( roundingMode == float_round_up ) roundIncrement = 0;
221 if ( roundingMode == float_round_down ) roundIncrement = 0;
229 && ( (sbits32) ( zSig + roundIncrement ) < 0 ) )
232 return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
238 || ( zSig + roundIncrement < 0x80000000 );
246 zSig = ( zSig + roundIncrement )>>
[all...]

Completed in 112 milliseconds