Lines Matching defs:float32

127 } float32;
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;
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 );
297 int16 float32_to_int16_round_to_zero( float32 STATUS_PARAM );
298 unsigned int float32_to_uint16_round_to_zero( float32 STATUS_PARAM );
299 int32 float32_to_int32( float32 STATUS_PARAM );
300 int32 float32_to_int32_round_to_zero( float32 STATUS_PARAM );
301 uint32 float32_to_uint32( float32 STATUS_PARAM );
302 uint32 float32_to_uint32_round_to_zero( float32 STATUS_PARAM );
303 int64 float32_to_int64( float32 STATUS_PARAM );
304 int64 float32_to_int64_round_to_zero( float32 STATUS_PARAM );
305 float64 float32_to_float64( float32 STATUS_PARAM );
307 floatx80 float32_to_floatx80( float32 STATUS_PARAM );
310 float128 float32_to_float128( float32 STATUS_PARAM );
316 float32 float32_round_to_int( float32 STATUS_PARAM );
317 float32 float32_add( float32, float32 STATUS_PARAM );
318 float32 float32_sub( float32, float32 STATUS_PARAM );
319 float32 float32_mul( float32, float32 STATUS_PARAM );
320 float32 float32_div( float32, float32 STATUS_PARAM );
321 float32 float32_rem( float32, float32 STATUS_PARAM );
322 float32 float32_sqrt( float32 STATUS_PARAM );
323 float32 float32_exp2( float32 STATUS_PARAM );
324 float32 float32_log2( float32 STATUS_PARAM );
325 int float32_eq( float32, float32 STATUS_PARAM );
326 int float32_le( float32, float32 STATUS_PARAM );
327 int float32_lt( float32, float32 STATUS_PARAM );
328 int float32_unordered( float32, float32 STATUS_PARAM );
329 int float32_eq_quiet( float32, float32 STATUS_PARAM );
330 int float32_le_quiet( float32, float32 STATUS_PARAM );
331 int float32_lt_quiet( float32, float32 STATUS_PARAM );
332 int float32_unordered_quiet( float32, float32 STATUS_PARAM );
333 int float32_compare( float32, float32 STATUS_PARAM );
334 int float32_compare_quiet( float32, float32 STATUS_PARAM );
335 float32 float32_min(float32, float32 STATUS_PARAM);
336 float32 float32_max(float32, float32 STATUS_PARAM);
337 int float32_is_quiet_nan( float32 );
338 int float32_is_signaling_nan( float32 );
339 float32 float32_maybe_silence_nan( float32 );
340 float32 float32_scalbn( float32, int STATUS_PARAM );
342 INLINE float32 float32_abs(float32 a)
350 INLINE float32 float32_chs(float32 a)
358 INLINE int float32_is_infinity(float32 a)
363 INLINE int float32_is_neg(float32 a)
368 INLINE int float32_is_zero(float32 a)
373 INLINE int float32_is_any_nan(float32 a)
378 INLINE int float32_is_zero_or_denormal(float32 a)
383 INLINE float32 float32_set_sign(float32 a, int sign)
422 float32 float64_to_float32( float64 STATUS_PARAM );
530 float32 floatx80_to_float32( floatx80 STATUS_PARAM );
624 float32 float128_to_float32( float128 STATUS_PARAM );