Home | History | Annotate | Download | only in fpu

Lines Matching refs:float128

136 } float128;
137 #define make_float128(high_, low_) ((float128) { .high = high_, .low = low_ })
233 float128 int32_to_float128( int32 STATUS_PARAM );
239 float128 int64_to_float128( int64 STATUS_PARAM );
240 float128 uint64_to_float128( uint64 STATUS_PARAM );
278 float128 float32_to_float128( float32 STATUS_PARAM );
386 float128 float64_to_float128( float64 STATUS_PARAM );
488 float128 floatx80_to_float128( floatx80 STATUS_PARAM );
567 int32 float128_to_int32( float128 STATUS_PARAM );
568 int32 float128_to_int32_round_to_zero( float128 STATUS_PARAM );
569 int64 float128_to_int64( float128 STATUS_PARAM );
570 int64 float128_to_int64_round_to_zero( float128 STATUS_PARAM );
571 float32 float128_to_float32( float128 STATUS_PARAM );
572 float64 float128_to_float64( float128 STATUS_PARAM );
573 floatx80 float128_to_floatx80( float128 STATUS_PARAM );
578 float128 float128_round_to_int( float128 STATUS_PARAM );
579 float128 float128_add( float128, float128 STATUS_PARAM );
580 float128 float128_sub( float128, float128 STATUS_PARAM );
581 float128 float128_mul( float128, float128 STATUS_PARAM );
582 float128 float128_div( float128, float128 STATUS_PARAM );
583 float128 float128_rem( float128, float128 STATUS_PARAM );
584 float128 float128_sqrt( float128 STATUS_PARAM );
585 int float128_eq( float128, float128 STATUS_PARAM );
586 int float128_le( float128, float128 STATUS_PARAM );
587 int float128_lt( float128, float128 STATUS_PARAM );
588 int float128_unordered( float128, float128 STATUS_PARAM );
589 int float128_eq_quiet( float128, float128 STATUS_PARAM );
590 int float128_le_quiet( float128, float128 STATUS_PARAM );
591 int float128_lt_quiet( float128, float128 STATUS_PARAM );
592 int float128_unordered_quiet( float128, float128 STATUS_PARAM );
593 int float128_compare( float128, float128 STATUS_PARAM );
594 int float128_compare_quiet( float128, float128 STATUS_PARAM );
595 int float128_is_quiet_nan( float128 );
596 int float128_is_signaling_nan( float128 );
597 float128 float128_maybe_silence_nan( float128 );
598 float128 float128_scalbn( float128, int STATUS_PARAM );
600 INLINE float128 float128_abs(float128 a)
606 INLINE float128 float128_chs(float128 a)
612 INLINE int float128_is_infinity(float128 a)
617 INLINE int float128_is_neg(float128 a)
622 INLINE int float128_is_zero(float128 a)
627 INLINE int float128_is_zero_or_denormal(float128 a)
632 INLINE int float128_is_any_nan(float128 a)
643 extern const float128 float128_default_nan;