Home
last modified time | relevance | path

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

/external/qemu/fpu/
Dsoftfloat.c1297 int16 aExp, shiftCount; in float32_to_int32() local
1302 aExp = extractFloat32Exp( a ); in float32_to_int32()
1304 if ( ( aExp == 0xFF ) && aSig ) aSign = 0; in float32_to_int32()
1305 if ( aExp ) aSig |= 0x00800000; in float32_to_int32()
1306 shiftCount = 0xAF - aExp; in float32_to_int32()
1327 int16 aExp, shiftCount; in float32_to_int32_round_to_zero() local
1332 aExp = extractFloat32Exp( a ); in float32_to_int32_round_to_zero()
1334 shiftCount = aExp - 0x9E; in float32_to_int32_round_to_zero()
1338 if ( ! aSign || ( ( aExp == 0xFF ) && aSig ) ) return 0x7FFFFFFF; in float32_to_int32_round_to_zero()
1342 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()