Searched defs:Py_IS_NAN (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Include/
H A Dpymath.h84 /* Py_IS_NAN(X)
91 * Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
93 #ifndef Py_IS_NAN
95 #define Py_IS_NAN(X) isnan(X) macro
97 #define Py_IS_NAN(X) ((X) != (X)) macro
134 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X))
/external/python/cpython2/PC/
H A Dpyconfig.h224 #define Py_IS_NAN _isnan macro

Completed in 164 milliseconds