Searched refs:isnan (Results 1 - 25 of 111) sorted by relevance

12345

/macosx-10.9.5/llvmCore-3425.0.33/autoconf/m4/
H A Dfunc_isnan.m42 # This function determines if the isnan function is available on this
7 [isnan], [<math.h>],
8 [float f; isnan(f);])
11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
15 [isnan], [<cmath>],
16 [float f; isnan(f);])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
22 [std::isnan], [<cmath>],
23 [float f; std::isnan(f);])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan functio
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/projects/sample/autoconf/m4/
H A Dfunc_isnan.m42 # This function determines if the isnan function is available on this
7 [isnan], [<math.h>],
8 [float f; isnan(f);])
11 AC_DEFINE([HAVE_ISNAN_IN_MATH_H],1,[Set to 1 if the isnan function is found in <math.h>])
15 [isnan], [<cmath>],
16 [float f; isnan(f);])
18 AC_DEFINE([HAVE_ISNAN_IN_CMATH],1,[Set to 1 if the isnan function is found in <cmath>])
22 [std::isnan], [<cmath>],
23 [float f; std::isnan(f);])
25 AC_DEFINE([HAVE_STD_ISNAN_IN_CMATH],1,[Set to 1 if the std::isnan functio
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dm4.c31 return isnan(value);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DIsNAN.cpp10 // Platform-independent wrapper around C99 isnan().
22 using std::isnan;
25 #define isnan _isnan
27 # error "Don't know how to get isnan()"
31 int IsNAN(float f) { return isnan(f); }
32 int IsNAN(double d) { return isnan(d); }
/macosx-10.9.5/ruby-104/ruby/missing/
H A Dfinite.c8 return !isnan(n) && !isinf(n);
H A Disnan.c1 /* public domain rewrite of isnan(3) */
8 isnan(double n) function
H A Derf.c13 # ifndef isnan
14 # define isnan(x) _isnan(x) macro
74 if (isnan(x)) return x; /* erf(NaN) = NaN */
84 if (isnan(x)) return x; /* erfc(NaN) = NaN */
H A Disinf.c39 return (!finite(n) && !isnan(n));
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dhypot.cpp35 if (isnan(result) && !isnan(x) && !isnan(y))
/macosx-10.9.5/tcl-102/tcl_ext/tdom/tdom/generic/
H A Dwin32.h6 #define isnan _isnan macro
10 /* #ifndef isnan */
11 /* int isnan(double number) { return (!(number == number)); } */
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSMatrix.cpp111 if (std::isnan(x))
113 if (std::isnan(y))
115 if (std::isnan(z))
122 if (std::isnan(scaleX))
124 if (std::isnan(scaleY))
126 if (std::isnan(scaleZ))
133 if (std::isnan(rotX))
136 if (std::isnan(rotY) && std::isnan(rotZ)) {
142 if (std::isnan(rot
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/port/
H A Dastmath.c61 return isnan(value);
64 return isnan(value);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSWebKitPointCustom.cpp44 if (std::isnan(x))
46 if (std::isnan(y))
/macosx-10.9.5/libxml2-26/libxml2/include/
H A Dwin32config.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/macosx-10.9.5/libxml2-26/libxml2/win32/VC10/
H A Dconfig.h57 #ifndef isnan
58 #define isnan(d) (_isnan(d)) macro
78 #ifndef isnan
79 static int isnan (double d) { function
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/include/
H A Dwin32config.h56 #ifndef isnan
57 #define isnan(d) (_isnan(d)) macro
77 #ifndef isnan
78 static int isnan (double d) { function
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dwin32config.h43 #ifndef isnan
44 #define isnan(d) (_isnan(d)) macro
62 static int isnan (double d) { function
/macosx-10.9.5/llvmCore-3425.0.33/utils/release/
H A DfindRegressions-simple.py106 if math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
109 elif math.isnan(d_old[t][x]) and not math.isnan(d_new[t][x]):
112 elif not math.isnan(d_old[t][x]) and math.isnan(d_new[t][x]):
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DDateInstance.cpp64 if (std::isnan(milli))
80 if (std::isnan(milli))
H A DDateConstructor.cpp202 if (std::isnan(doubleArguments[0])
203 || std::isnan(doubleArguments[1])
204 || (n >= 3 && std::isnan(doubleArguments[2]))
205 || (n >= 4 && std::isnan(doubleArguments[3]))
206 || (n >= 5 && std::isnan(doubleArguments[4]))
207 || (n >= 6 && std::isnan(doubleArguments[5]))
208 || (n >= 7 && std::isnan(doubleArguments[6])))
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig.i51 int isnan(double);
/macosx-10.9.5/ruby-104/ruby/include/ruby/
H A Dmissing.h155 # define isinf(x) (!finite(x) && !isnan(x))
162 #ifndef isnan
164 RUBY_EXTERN int isnan(double);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DCalculationValue.cpp68 if (std::isnan(result))
/macosx-10.9.5/WebCore-7537.78.1/
H A DWebCorePrefix.h143 #define isnan _isnan
149 #undef isnan
/macosx-10.9.5/WebCore-7537.78.1/xml/
H A DXPathValue.cpp77 return m_number && !std::isnan(m_number);
126 if (std::isnan(m_number))

Completed in 136 milliseconds

12345