Home
last modified time | relevance | path

Searched refs:float64 (Results 1 – 11 of 11) sorted by relevance

/external/qemu/fpu/
Dsoftfloat.h130 } float64; typedef
131 #define float64_val(x) (((float64)(x)).v)
132 #define make_float64(x) __extension__ ({ float64 f64_val = {x}; f64_val; })
135 typedef uint64_t float64; typedef
225 float64 int32_to_float64( int STATUS_PARAM );
227 float64 uint32_to_float64( unsigned int STATUS_PARAM );
236 float64 int64_to_float64( int64_t STATUS_PARAM );
237 float64 uint64_to_float64( uint64_t STATUS_PARAM );
260 float64 float32_to_float64( float32 STATUS_PARAM );
322 int float64_to_int32( float64 STATUS_PARAM );
[all …]
Dsoftfloat-native.h90 typedef double float64; typedef
100 float64 f;
155 float64 int32_to_float64( int STATUS_PARAM);
156 float64 uint32_to_float64( unsigned int STATUS_PARAM);
165 float64 int64_to_float64( int64_t STATUS_PARAM);
166 float64 uint64_to_float64( uint64_t v STATUS_PARAM);
183 float64 float32_to_float64( float32 STATUS_PARAM);
282 int float64_to_int32( float64 STATUS_PARAM );
283 int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
284 unsigned int float64_to_uint32( float64 STATUS_PARAM );
[all …]
Dsoftfloat-native.c90 float64 int32_to_float64(int v STATUS_PARAM) in int32_to_float64()
92 return (float64)v; in int32_to_float64()
95 float64 uint32_to_float64(unsigned int v STATUS_PARAM) in uint32_to_float64()
97 return (float64)v; in uint32_to_float64()
114 float64 int64_to_float64( int64_t v STATUS_PARAM) in int64_to_float64()
116 return (float64)v; in int64_to_float64()
118 float64 uint64_to_float64( uint64_t v STATUS_PARAM) in uint64_to_float64()
120 return (float64)v; in uint64_to_float64()
165 float64 float32_to_float64( float32 a STATUS_PARAM) in float32_to_float64()
269 int float64_to_int32( float64 a STATUS_PARAM) in float64_to_int32()
[all …]
Dsoftfloat.c341 INLINE bits64 extractFloat64Frac( float64 a ) in extractFloat64Frac()
352 INLINE int16 extractFloat64Exp( float64 a ) in extractFloat64Exp()
363 INLINE flag extractFloat64Sign( float64 a ) in extractFloat64Sign()
399 INLINE float64 packFloat64( flag zSign, int16 zExp, bits64 zSig ) in packFloat64()
429 static float64 roundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig STATUS_PARAM) in roundAndPackFloat64()
491 static float64
1074 float64 int32_to_float64( int32 a STATUS_PARAM ) in int32_to_float64()
1202 float64 int64_to_float64( int64 a STATUS_PARAM ) in int64_to_float64()
1215 float64 uint64_to_float64( uint64 a STATUS_PARAM ) in uint64_to_float64()
1445 float64 float32_to_float64( float32 a STATUS_PARAM ) in float32_to_float64()
[all …]
Dsoftfloat-specialize.h207 int float64_is_nan( float64 a_ ) in float64_is_nan()
224 int float64_is_signaling_nan( float64 a_ ) in float64_is_signaling_nan()
242 static commonNaNT float64ToCommonNaN( float64 a STATUS_PARAM) in float64ToCommonNaN()
258 static float64 commonNaNToFloat64( commonNaNT a ) in commonNaNToFloat64()
277 static float64 propagateFloat64NaN( float64 a, float64 b STATUS_PARAM) in propagateFloat64NaN()
/external/qemu/
Dcpu-all.h125 float64 d;
325 static inline float64 ldfq_le_p(const void *ptr) in ldfq_le_p()
333 static inline void stfq_le_p(void *ptr, float64 v) in stfq_le_p()
385 static inline float64 ldfq_le_p(const void *ptr) in ldfq_le_p()
387 return *(float64 *)ptr; in ldfq_le_p()
395 static inline void stfq_le_p(void *ptr, float64 v) in stfq_le_p()
397 *(float64 *)ptr = v; in stfq_le_p()
514 static inline float64 ldfq_be_p(const void *ptr) in ldfq_be_p()
522 static inline void stfq_be_p(void *ptr, float64 v) in stfq_be_p()
574 static inline float64 ldfq_be_p(const void *ptr) in ldfq_be_p()
[all …]
Dsoftmmu_header.h153 static inline float64 glue(ldfq, MEMSUFFIX)(target_ulong ptr) in glue()
156 float64 d; in glue()
163 static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, float64 v) in glue()
166 float64 d; in glue()
Ddef-helper.h51 #define dh_ctype_f64 float64
/external/qemu/target-arm/
Dhelper.c2368 float64 VFP_HELPER(name, d)(float64 a, float64 b, CPUState *env) \
2383 float64 VFP_HELPER(neg, d)(float64 a) in VFP_HELPER()
2393 float64 VFP_HELPER(abs, d)(float64 a) in VFP_HELPER()
2403 float64 VFP_HELPER(sqrt, d)(float64 a, CPUState *env) in VFP_HELPER()
2435 DO_VFP_cmp(d, float64) in DO_VFP_cmp()
2461 static inline float64 vfp_itod(uint64_t i) in vfp_itod()
2465 float64 d; in vfp_itod()
2472 static inline uint64_t vfp_dtoi(float64 d) in vfp_dtoi()
2476 float64 d; in vfp_dtoi()
2489 float64 VFP_HELPER(uito, d)(float32 x, CPUState *env) in VFP_HELPER()
[all …]
Dcpu.h172 float64 regs[32];
Dtranslate.c9149 float64 f64;