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:__anon6278
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...]
softfloat-native.h 90 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...]
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 153 static inline float64 glue(ldfq, MEMSUFFIX)(target_ulong ptr)
156 float64 d;
163 static inline void glue(stfq, MEMSUFFIX)(target_ulong ptr, float64 v)
166 float64 d;
cpu-all.h 125 float64 d;
325 static inline float64 ldfq_le_p(const void *ptr)
333 static inline void stfq_le_p(void *ptr, float64 v)
385 static inline float64 ldfq_le_p(const void *ptr)
387 return *(float64 *)ptr;
395 static inline void stfq_le_p(void *ptr, float64 v)
397 *(float64 *)ptr = v;
514 static inline float64 ldfq_be_p(const void *ptr)
522 static inline void stfq_be_p(void *ptr, float64 v)
574 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 66 milliseconds