HomeSort by relevance Sort by last modified time
    Searched defs:Py_IS_NAN (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 84 /* 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)
97 #define Py_IS_NAN(X) ((X) != (X))
136 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X))
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 84 /* 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)
97 #define Py_IS_NAN(X) ((X) != (X))
136 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X))

Completed in 151 milliseconds