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

  /external/qemu/fpu/
softfloat.h 124 } float32; typedef in typeref:struct:__anon4547
126 #define float32_val(x) (((float32)(x)).v)
127 #define make_float32(x) __extension__ ({ float32 f32_val = {x}; f32_val; })
134 typedef uint32_t float32; typedef
224 float32 int32_to_float32( int STATUS_PARAM );
226 float32 uint32_to_float32( unsigned int STATUS_PARAM );
234 float32 int64_to_float32( int64_t STATUS_PARAM );
235 float32 uint64_to_float32( uint64_t STATUS_PARAM );
248 int float32_to_int32( float32 STATUS_PARAM );
249 int float32_to_int32_round_to_zero( float32 STATUS_PARAM )
    [all...]
softfloat-native.h 87 typedef float float32; typedef
94 float32 f;
157 float32 int32_to_float32( int STATUS_PARAM);
158 float32 uint32_to_float32( unsigned int STATUS_PARAM);
167 float32 int64_to_float32( int64_t STATUS_PARAM);
168 float32 uint64_to_float32( uint64_t STATUS_PARAM);
181 int float32_to_int32( float32 STATUS_PARAM);
182 int float32_to_int32_round_to_zero( float32 STATUS_PARAM);
183 unsigned int float32_to_uint32( float32 a STATUS_PARAM);
184 unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM)
    [all...]
softfloat-native.c 80 float32 int32_to_float32(int v STATUS_PARAM)
82 return (float32)v;
85 float32 uint32_to_float32(unsigned int v STATUS_PARAM)
87 return (float32)v;
106 float32 int64_to_float32( int64_t v STATUS_PARAM)
108 return (float32)v;
110 float32 uint64_to_float32( uint64_t v STATUS_PARAM)
112 return (float32)v;
147 int float32_to_int32( float32 a STATUS_PARAM)
151 int float32_to_int32_round_to_zero( float32 a STATUS_PARAM
    [all...]
softfloat-specialize.h 79 int float32_is_nan( float32 a_ )
94 int float32_is_signaling_nan( float32 a_ )
110 static commonNaNT float32ToCommonNaN( float32 a STATUS_PARAM )
126 static float32 commonNaNToFloat32( commonNaNT a )
142 static float32 propagateFloat32NaN( float32 a, float32 b STATUS_PARAM)
softfloat.c 177 INLINE bits32 extractFloat32Frac( float32 a )
188 INLINE int16 extractFloat32Exp( float32 a )
199 INLINE flag extractFloat32Sign( float32 a )
235 INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
265 static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig STATUS_PARAM)
327 static float32
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/include/
typedefs.h 205 typedef float float32; typedef
216 #if defined(FLOAT32)
217 typedef float32 float_t;
  /external/qemu/target-arm/
helper.c     [all...]
neon_helper.c 25 static inline float32 vfp_itos(uint32_t i)
29 float32 s;
36 static inline uint32_t vfp_stoi(float32 s)
40 float32 s;
    [all...]
  /external/qemu/
cpu-all.h 119 float32 f;
306 static inline float32 ldfl_le_p(const void *ptr)
309 float32 f;
316 static inline void stfl_le_p(void *ptr, float32 v)
319 float32 f;
381 static inline float32 ldfl_le_p(const void *ptr)
383 return *(float32 *)ptr;
391 static inline void stfl_le_p(void *ptr, float32 v)
393 *(float32 *)ptr = v;
495 static inline float32 ldfl_be_p(const void *ptr
    [all...]
softmmu_header.h 322 static inline float32 glue(ldfl, MEMSUFFIX)(target_ulong ptr)
325 float32 f;
332 static inline void glue(stfl, MEMSUFFIX)(target_ulong ptr, float32 v)
335 float32 f;
def-helper.h 50 #define dh_ctype_f32 float32

Completed in 660 milliseconds