Lines Matching refs:float32

132 } float32;
134 #define float32_val(x) (((float32)(x)).v)
135 #define make_float32(x) __extension__ ({ float32 f32_val = {x}; f32_val; })
142 typedef uint32_t float32;
232 float32 int32_to_float32( int STATUS_PARAM );
234 float32 uint32_to_float32( unsigned int STATUS_PARAM );
242 float32 int64_to_float32( int64_t STATUS_PARAM );
243 float32 uint64_to_float32( uint64_t STATUS_PARAM );
256 bits16 float32_to_float16( float32, flag STATUS_PARAM );
257 float32 float16_to_float32( bits16, flag STATUS_PARAM );
262 int float32_to_int32( float32 STATUS_PARAM );
263 int float32_to_int32_round_to_zero( float32 STATUS_PARAM );
264 unsigned int float32_to_uint32( float32 STATUS_PARAM );
265 unsigned int float32_to_uint32_round_to_zero( float32 STATUS_PARAM );
266 int64_t float32_to_int64( float32 STATUS_PARAM );
267 int64_t float32_to_int64_round_to_zero( float32 STATUS_PARAM );
268 float64 float32_to_float64( float32 STATUS_PARAM );
270 floatx80 float32_to_floatx80( float32 STATUS_PARAM );
273 float128 float32_to_float128( float32 STATUS_PARAM );
279 float32 float32_round_to_int( float32 STATUS_PARAM );
280 float32 float32_add( float32, float32 STATUS_PARAM );
281 float32 float32_sub( float32, float32 STATUS_PARAM );
282 float32 float32_mul( float32, float32 STATUS_PARAM );
283 float32 float32_div( float32, float32 STATUS_PARAM );
284 float32 float32_rem( float32, float32 STATUS_PARAM );
285 float32 float32_sqrt( float32 STATUS_PARAM );
286 float32 float32_exp2( float32 STATUS_PARAM );
287 float32 float32_log2( float32 STATUS_PARAM );
288 int float32_eq( float32, float32 STATUS_PARAM );
289 int float32_le( float32, float32 STATUS_PARAM );
290 int float32_lt( float32, float32 STATUS_PARAM );
291 int float32_eq_signaling( float32, float32 STATUS_PARAM );
292 int float32_le_quiet( float32, float32 STATUS_PARAM );
293 int float32_lt_quiet( float32, float32 STATUS_PARAM );
294 int float32_compare( float32, float32 STATUS_PARAM );
295 int float32_compare_quiet( float32, float32 STATUS_PARAM );
296 int float32_is_nan( float32 );
297 int float32_is_signaling_nan( float32 );
298 float32 float32_scalbn( float32, int STATUS_PARAM );
300 INLINE float32 float32_abs(float32 a)
305 INLINE float32 float32_chs(float32 a)
310 INLINE int float32_is_infinity(float32 a)
315 INLINE int float32_is_neg(float32 a)
320 INLINE int float32_is_zero(float32 a)
340 float32 float64_to_float32( float64 STATUS_PARAM );
410 float32 floatx80_to_float32( floatx80 STATUS_PARAM );
474 float32 float128_to_float32( float128 STATUS_PARAM );