Home
last modified time | relevance | path

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

/linux-3.4.99/arch/arm/nwfpe/
Dsoftfloat.c74 int8 roundIncrement, roundBits; in roundAndPackInt32() local
79 roundIncrement = 0x40; in roundAndPackInt32()
82 roundIncrement = 0; in roundAndPackInt32()
85 roundIncrement = 0x7F; in roundAndPackInt32()
87 if ( roundingMode == float_round_up ) roundIncrement = 0; in roundAndPackInt32()
90 if ( roundingMode == float_round_down ) roundIncrement = 0; in roundAndPackInt32()
95 absZ = ( absZ + roundIncrement )>>7; in roundAndPackInt32()
221 int8 roundIncrement, roundBits; in roundAndPackFloat32() local
226 roundIncrement = 0x40; in roundAndPackFloat32()
229 roundIncrement = 0; in roundAndPackFloat32()
[all …]
/linux-3.4.99/arch/sh/kernel/cpu/sh4/
Dsoftfloat.c363 int8 roundIncrement, roundBits; in roundAndPackFloat32() local
368 roundIncrement = 0x40; in roundAndPackFloat32()
370 roundIncrement = 0; in roundAndPackFloat32()
376 && ((sbits32) (zSig + roundIncrement) < 0)) in roundAndPackFloat32()
380 0) - (roundIncrement == 0); in roundAndPackFloat32()
384 || (zSig + roundIncrement < 0x80000000); in roundAndPackFloat32()
394 zSig = (zSig + roundIncrement) >> 7; in roundAndPackFloat32()
414 int16 roundIncrement, roundBits; in roundAndPackFloat64() local
419 roundIncrement = 0x200; in roundAndPackFloat64()
421 roundIncrement = 0; in roundAndPackFloat64()
[all …]