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

  /external/qemu/fpu/
softfloat.h 127 } float32; typedef in typeref:struct:__anon10980
129 #define float32_val(x) (((float32)(x)).v)
130 #define make_float32(x) __extension__ ({ float32 f32_val = {x}; f32_val; })
140 typedef uint32_t float32; typedef
249 float32 int32_to_float32( int32 STATUS_PARAM );
251 float32 uint32_to_float32( unsigned int STATUS_PARAM );
259 float32 int64_to_float32( int64 STATUS_PARAM );
260 float32 uint64_to_float32( uint64 STATUS_PARAM );
273 float16 float32_to_float16( float32, flag STATUS_PARAM );
274 float32 float16_to_float32( float16, flag STATUS_PARAM )
    [all...]
softfloat-native.h 89 typedef float float32; typedef
96 float32 f;
153 float32 int32_to_float32( int STATUS_PARAM);
154 float32 uint32_to_float32( unsigned int STATUS_PARAM);
163 float32 int64_to_float32( int64_t STATUS_PARAM);
164 float32 uint64_to_float32( uint64_t STATUS_PARAM);
186 int float32_to_int32( float32 STATUS_PARAM);
187 int float32_to_int32_round_to_zero( float32 STATUS_PARAM);
188 unsigned int float32_to_uint32( float32 a STATUS_PARAM);
189 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 153 int float32_is_quiet_nan( float32 a_ )
168 int float32_is_signaling_nan( float32 a_ )
183 float32 float32_maybe_silence_nan( float32 a_ )
207 static commonNaNT float32ToCommonNaN( float32 a STATUS_PARAM )
223 static float32 commonNaNToFloat32( commonNaNT a STATUS_PARAM)
356 static float32 propagateFloat32NaN( float32 a, float32 b STATUS_PARAM)