Lines Matching defs:Perl_isinf
2685 # ifndef Perl_isinf
2687 # define Perl_isinf(x) isinfl(x)
2689 # define Perl_isinf(x) isinf(x)
2691 # define Perl_isinf(x) ((x) > LDBL_MAX || (x) < -LDBL_MAX)
2731 # define Perl_isinf(x) isinfq(x)
2783 # ifndef Perl_isinf
2785 # define Perl_isinf(x) isinf(x)
2787 # define Perl_isinf(x) ((x) > DBL_MAX || (x) < -DBL_MAX)
3037 #ifndef Perl_isinf
3039 # define Perl_isinf(x) Perl_fp_class_inf(x)
3058 #ifndef Perl_isinf
3060 # define Perl_isinf(x) (!(Perl_isfinite(x)||Perl_isnan(x)))
3140 =for apidoc_item |IV|Perl_isinf|NV x
8601 * The Perl_isinf() and Perl_isnan() should have been defined even if
8604 #if !defined(Perl_fp_class_denorm) && defined(Perl_isinf) && defined(Perl_isnan) && defined(NV_MIN)
8605 # define Perl_fp_class_denorm(x) ((x) != 0.0 && !Perl_isinf(x) && !Perl_isnan(x) && PERL_ABS(x) < NV_MIN)