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

  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
softfloat.c 126 int8 roundIncrement, roundBits;
131 roundIncrement = 0x40;
134 roundIncrement = 0;
137 roundIncrement = 0x7F;
139 if ( roundingMode == float_round_up ) roundIncrement = 0;
142 if ( roundingMode == float_round_down ) roundIncrement = 0;
147 absZ = ( absZ + roundIncrement )>>7;
316 int8 roundIncrement, roundBits;
321 roundIncrement = 0x40;
324 roundIncrement = 0;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 212 int8 roundIncrement, roundBits;
217 roundIncrement = 0x40;
220 roundIncrement = 0;
223 roundIncrement = 0x7F;
225 if ( roundingMode == float_round_up ) roundIncrement = 0;
228 if ( roundingMode == float_round_down ) roundIncrement = 0;
236 && ( (sbits32) ( zSig + roundIncrement ) < 0 ) )
239 return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
245 || ( zSig + roundIncrement < (uint32)0x80000000 );
253 zSig = ( zSig + roundIncrement )>>7;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/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...]

Completed in 596 milliseconds