HomeSort by relevance Sort by last modified time
    Searched refs:float64 (Results 1 - 12 of 12) sorted by null

  /external/qemu/fpu/
softfloat.h 130 } float64; typedef in typeref:struct:__anon4548
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 );
254 float64 float32_to_float64( float32 STATUS_PARAM );
316 int float64_to_int32( float64 STATUS_PARAM )
    [all...]
softfloat-native.h 88 typedef double float64; typedef
98 float64 f;
159 float64 int32_to_float64( int STATUS_PARAM);
160 float64 uint32_to_float64( unsigned int STATUS_PARAM);
169 float64 int64_to_float64( int64_t STATUS_PARAM);
170 float64 uint64_to_float64( uint64_t v STATUS_PARAM);
187 float64 float32_to_float64( float32 STATUS_PARAM);
286 int float64_to_int32( float64 STATUS_PARAM );
287 int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
288 unsigned int float64_to_uint32( float64 STATUS_PARAM )
    [all...]
softfloat-native.c 90 float64 int32_to_float64(int v STATUS_PARAM)
92 return (float64)v;
95 float64 uint32_to_float64(unsigned int v STATUS_PARAM)
97 return (float64)v;
114 float64 int64_to_float64( int64_t v STATUS_PARAM)
116 return (float64)v;
118 float64 uint64_to_float64( uint64_t v STATUS_PARAM)
120 return (float64)v;
165 float64 float32_to_float64( float32 a STATUS_PARAM)
269 int float64_to_int32( float64 a STATUS_PARAM
    [all...]
softfloat-specialize.h 207 int float64_is_nan( float64 a_ )
224 int float64_is_signaling_nan( float64 a_ )
242 static commonNaNT float64ToCommonNaN( float64 a STATUS_PARAM)
258 static float64 commonNaNToFloat64( commonNaNT a )
277 static float64 propagateFloat64NaN( float64 a, float64 b STATUS_PARAM)
softfloat.c 341 INLINE bits64 extractFloat64Frac( float64 a )
352 INLINE int16 extractFloat64Exp( float64 a )
363 INLINE flag extractFloat64Sign( float64 a )
399 INLINE float64 packFloat64( flag zSign, int16 zExp, bits64 zSig )
429 static float64 roundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig STATUS_PARAM)
491 static float64
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
typedefs.h 209 typedef double float64; typedef
219 typedef float64 float_t;
  /external/qemu/
softmmu_header.h 300 static inline float64 glue(ldfq, MEMSUFFIX)(target_ulong ptr)
303 float64 d;
310 static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, float64 v)
313 float64 d;
cpu-all.h 126 float64 d;
326 static inline float64 ldfq_le_p(const void *ptr)
334 static inline void stfq_le_p(void *ptr, float64 v)
386 static inline float64 ldfq_le_p(const void *ptr)
388 return *(float64 *)ptr;
396 static inline void stfq_le_p(void *ptr, float64 v)
398 *(float64 *)ptr = v;
515 static inline float64 ldfq_be_p(const void *ptr)
523 static inline void stfq_be_p(void *ptr, float64 v)
575 static inline float64 ldfq_be_p(const void *ptr
    [all...]
def-helper.h 51 #define dh_ctype_f64 float64
  /external/qemu/target-arm/
helper.c     [all...]
cpu.h 172 float64 regs[32];
translate.c     [all...]

Completed in 2445 milliseconds