Home
last modified time | relevance | path

Searched refs:floatx80 (Results 1 – 6 of 6) sorted by relevance

/external/qemu/fpu/
Dsoftfloat-native.h92 typedef long double floatx80; typedef
105 floatx80 f;
158 floatx80 int32_to_floatx80( int STATUS_PARAM);
168 floatx80 int64_to_floatx80( int64_t STATUS_PARAM);
194 floatx80 float32_to_floatx80( float32 STATUS_PARAM);
314 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
428 int floatx80_to_int32( floatx80 STATUS_PARAM );
429 int floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
430 int64_t floatx80_to_int64( floatx80 STATUS_PARAM);
431 int64_t floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM);
[all …]
Dsoftfloat.h156 } floatx80; typedef
157 #define make_floatx80(exp, mant) ((floatx80) { mant, exp })
254 floatx80 int32_to_floatx80( int32 STATUS_PARAM );
264 floatx80 int64_to_floatx80( int64 STATUS_PARAM );
307 floatx80 float32_to_floatx80( float32 STATUS_PARAM );
424 floatx80 float64_to_floatx80( float64 STATUS_PARAM );
526 int32 floatx80_to_int32( floatx80 STATUS_PARAM );
527 int32 floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
528 int64 floatx80_to_int64( floatx80 STATUS_PARAM );
529 int64 floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM );
[all …]
Dsoftfloat-native.c101 floatx80 int32_to_floatx80(int v STATUS_PARAM) in int32_to_floatx80()
103 return (floatx80)v; in int32_to_floatx80()
123 floatx80 int64_to_floatx80( int64_t v STATUS_PARAM) in int64_to_floatx80()
125 return (floatx80)v; in int64_to_floatx80()
170 floatx80 float32_to_floatx80( float32 a STATUS_PARAM) in float32_to_floatx80()
299 floatx80 float64_to_floatx80( float64 a STATUS_PARAM) in float64_to_floatx80()
449 int floatx80_to_int32( floatx80 a STATUS_PARAM) in floatx80_to_int32()
453 int floatx80_to_int32_round_to_zero( floatx80 a STATUS_PARAM) in floatx80_to_int32_round_to_zero()
457 int64_t floatx80_to_int64( floatx80 a STATUS_PARAM) in floatx80_to_int64()
461 int64_t floatx80_to_int64_round_to_zero( floatx80 a STATUS_PARAM) in floatx80_to_int64_round_to_zero()
[all …]
Dsoftfloat-specialize.h534 int floatx80_is_quiet_nan( floatx80 a ) in floatx80_is_quiet_nan()
556 int floatx80_is_signaling_nan( floatx80 a ) in floatx80_is_signaling_nan()
577 floatx80 floatx80_maybe_silence_nan( floatx80 a ) in floatx80_maybe_silence_nan()
601 static commonNaNT floatx80ToCommonNaN( floatx80 a STATUS_PARAM) in floatx80ToCommonNaN()
623 static floatx80 commonNaNToFloatx80( commonNaNT a STATUS_PARAM) in commonNaNToFloatx80()
625 floatx80 z; in commonNaNToFloatx80()
650 static floatx80 propagateFloatx80NaN( floatx80 a, floatx80 b STATUS_PARAM) in propagateFloatx80NaN()
Dsoftfloat.c574 INLINE uint64_t extractFloatx80Frac( floatx80 a ) in extractFloatx80Frac()
586 INLINE int32 extractFloatx80Exp( floatx80 a ) in extractFloatx80Exp()
598 INLINE flag extractFloatx80Sign( floatx80 a ) in extractFloatx80Sign()
628 INLINE floatx80 packFloatx80( flag zSign, int32 zExp, uint64_t zSig ) in packFloatx80()
630 floatx80 z; in packFloatx80()
662 static floatx80
834 static floatx80
1171 floatx80 int32_to_floatx80( int32 a STATUS_PARAM ) in int32_to_floatx80()
1303 floatx80 int64_to_floatx80( int64 a STATUS_PARAM ) in int64_to_floatx80()
1602 floatx80 float32_to_floatx80( float32 a STATUS_PARAM ) in float32_to_floatx80()
[all …]
/external/qemu/target-i386/
Dcpu.h502 typedef floatx80 CPU86_LDouble;