Searched refs:isinf (Results 1 - 25 of 67) sorted by relevance

123

/macosx-10.9.5/ruby-104/ruby/missing/
H A Dfinite.c8 return !isnan(n) && !isinf(n);
H A Disinf.c1 /* public domain rewrite of isinf(3) */
9 isinf(double n) function
31 * isinf may be provided only as a macro.
35 #ifndef isinf
37 isinf(double n) function
56 isinf(double n) function
H A Derf.c16 # ifndef isinf
17 # define isinf(x) (!_finite(x) && !_isnan(x)) macro
H A Dacosh.c83 if (isinf(z))
/macosx-10.9.5/llvmCore-3425.0.33/autoconf/m4/
H A Dfunc_isinf.m42 # This function determins if the isinf function isavailable on this
7 [isinf], [<math.h>],
8 [float f; isinf(f);])
10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
14 [isinf], [<cmath>],
15 [float f; isinf(f);])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
21 [std::isinf], [<cmath>],
22 [float f; std::isinf(f);])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf functio
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/projects/sample/autoconf/m4/
H A Dfunc_isinf.m42 # This function determins if the isinf function isavailable on this
7 [isinf], [<math.h>],
8 [float f; isinf(f);])
10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
14 [isinf], [<cmath>],
15 [float f; isinf(f);])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
21 [std::isinf], [<cmath>],
22 [float f; std::isinf(f);])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf functio
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DIsInf.cpp1 //===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
10 // Platform-independent wrapper around C99 isinf()
22 using std::isinf;
27 static int isinf(double x) { return !finite(x) && x==x; }
30 #define isinf(X) (!_finite(X))
32 // GCC's fixincludes seems to be removing the isinf() declaration from the
35 static int isinf(double x) { return !finite(x) && x==x; }
39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
41 # error "Don't know how to get isinf()"
46 int IsInf(float f) { return isinf(
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Dwin32.h7 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 : ((_fpclass(d) == _FPCLASS_NINF) ? -1 :0)) macro
/macosx-10.9.5/libxml2-26/libxml2/include/
H A Dwin32config.h49 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
51 #ifndef isinf
52 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
60 #ifndef isinf
61 static int isinf (double d) { function
/macosx-10.9.5/libxml2-26/libxml2/win32/VC10/
H A Dconfig.h50 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
52 #ifndef isinf
53 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
61 #ifndef isinf
62 static int isinf (double d) { function
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/include/
H A Dwin32config.h49 /* Bjorn Reese figured a quite nice construct for isinf() using the _fpclass
51 #ifndef isinf
52 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
60 #ifndef isinf
61 static int isinf (double d) { function
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dwin32config.h36 /* Bjorn Reese figured a quite nice construct for isinf() using the
38 #ifndef isinf
39 #define isinf(d) ((_fpclass(d) == _FPCLASS_PINF) ? 1 \ macro
47 static int isinf (double d) { function
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i45 int isinf(double);
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dmissing.h149 #ifndef isinf
155 # define isinf(x) (!finite(x) && !isnan(x)) macro
157 RUBY_EXTERN int isinf(double);
/macosx-10.9.5/WebCore-7537.78.1/html/track/
H A DTextTrackRegion.cpp85 if (std::isinf(value) || std::isnan(value)) {
110 if (std::isinf(value) || std::isnan(value)) {
125 if (std::isinf(value) || std::isnan(value)) {
140 if (std::isinf(value) || std::isnan(value)) {
155 if (std::isinf(value) || std::isnan(value)) {
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSGeolocationCustom.cpp55 if (!(std::isinf(timeout) && (timeout > 0))) {
63 if (std::isinf(maximumAge) && (maximumAge > 0)) {
H A DJSHTMLOptionsCollectionCustom.cpp46 if (!std::isnan(lengthValue) && !std::isinf(lengthValue)) {
H A DJSDOMBinding.cpp300 if (std::isnan(x) || std::isinf(x)) {
335 if (std::isnan(x) || std::isinf(x) || !x)
366 if (std::isnan(x) || std::isinf(x) || !x)
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DAudioResampler.cpp113 if (std::isnan(rate) || std::isinf(rate) || rate <= 0.0)
H A DDynamicsCompressorKernel.cpp291 if (std::isinf(m_detectorAverage))
319 if (std::isinf(compressionDiffDb))
347 if (std::isinf(compressionDiffDb))
415 if (std::isinf(detectorAverage))
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathValue.cpp130 if (std::isinf(m_number))
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAudioParam.cpp61 if (!std::isnan(value) && !std::isinf(value))
/macosx-10.9.5/libstdcxx-60/src/
H A Dc++locale.cc38 #include <cmath> // For isinf, finite, finitef, fabs
71 if (isinf (static_cast<double> (__f)))
/macosx-10.9.5/ruby-104/ruby/
H A Dmath.c73 if (isinf(dx) && isinf(dy)) domain_error("atan2");
676 if (isinf(d0) && signbit(d0)) domain_error("gamma");
710 if (isinf(d0)) {
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/
H A Dlibm.tcl58 {int isinf(double)}

Completed in 319 milliseconds

123