Home
last modified time | relevance | path

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

/external/qemu/fpu/
Dsoftfloat.c1291 int16 aExp, shiftCount; in float32_to_int32() local
1296 aExp = extractFloat32Exp( a ); in float32_to_int32()
1298 if ( ( aExp == 0xFF ) && aSig ) aSign = 0; in float32_to_int32()
1299 if ( aExp ) aSig |= 0x00800000; in float32_to_int32()
1300 shiftCount = 0xAF - aExp; in float32_to_int32()
1321 int16 aExp, shiftCount; in float32_to_int32_round_to_zero() local
1326 aExp = extractFloat32Exp( a ); in float32_to_int32_round_to_zero()
1328 shiftCount = aExp - 0x9E; in float32_to_int32_round_to_zero()
1332 if ( ! aSign || ( ( aExp == 0xFF ) && aSig ) ) return 0x7FFFFFFF; in float32_to_int32_round_to_zero()
1336 else if ( aExp <= 0x7E ) { in float32_to_int32_round_to_zero()
[all …]
Dsoftfloat-macros.h578 static bits32 estimateSqrt32( int16 aExp, bits32 a ) in estimateSqrt32() argument
592 if ( aExp & 1 ) { in estimateSqrt32()