Searched refs:Perl_fp_class (Results 1 – 2 of 2) sorted by relevance
2734 # define Perl_fp_class(x) ((x) == 0.0Q ? 0 : isinfq(x) ? 3 : isnanq(x) ? 4 : PERL_ABS(x) < FLT128… macro2735 # define Perl_fp_class_inf(x) (Perl_fp_class(x) == 3)2736 # define Perl_fp_class_nan(x) (Perl_fp_class(x) == 4)2737 # define Perl_fp_class_norm(x) (Perl_fp_class(x) == 1)2738 # define Perl_fp_class_denorm(x) (Perl_fp_class(x) == 2)2739 # define Perl_fp_class_zero(x) (Perl_fp_class(x) == 0)2801 #if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)2804 # define Perl_fp_class(x) fpclassify(x) macro2805 # define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_INFINITE)2806 # define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_NAN)[all …]
65 Perl_fp_class # Z added by devel/scanprov