HomeSort by: relevance | last modified time | path
    Searched defs:roundIncrement (Results 1 - 3 of 3) sorted by relevancy

  /src/lib/libc/softfloat/bits32/
softfloat.c 213 int8 roundIncrement, roundBits;
218 roundIncrement = 0x40;
221 roundIncrement = 0;
224 roundIncrement = 0x7F;
226 if ( roundingMode == float_round_up ) roundIncrement = 0;
229 if ( roundingMode == float_round_down ) roundIncrement = 0;
237 && ( (sbits32) ( zSig + roundIncrement ) < 0 ) )
240 return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
246 || ( zSig + roundIncrement < (uint32)0x80000000 );
254 zSig = ( zSig + roundIncrement )>>7
    [all...]
  /src/sys/lib/libkern/
softfloat.c 109 int8 roundIncrement, roundBits;
114 roundIncrement = 0x40;
117 roundIncrement = 0;
120 roundIncrement = 0x7F;
122 if ( roundingMode == float_round_up ) roundIncrement = 0;
125 if ( roundingMode == float_round_down ) roundIncrement = 0;
130 absZ = ( absZ + roundIncrement )>>7;
324 int8 roundIncrement, roundBits;
329 roundIncrement = 0x40;
332 roundIncrement = 0
    [all...]
  /src/lib/libc/softfloat/bits64/
softfloat.c 129 int8 roundIncrement, roundBits;
134 roundIncrement = 0x40;
137 roundIncrement = 0;
140 roundIncrement = 0x7F;
142 if ( roundingMode == float_round_up ) roundIncrement = 0;
145 if ( roundingMode == float_round_down ) roundIncrement = 0;
150 absZ = ( absZ + roundIncrement )>>7;
319 int8 roundIncrement, roundBits;
324 roundIncrement = 0x40;
327 roundIncrement = 0
    [all...]

Completed in 14 milliseconds