HomeSort by relevance Sort by last modified time
    Searched refs:Py_IS_NAN (Results 1 - 3 of 3) 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))
  /external/chromium_org/third_party/simplejson/
_speedups.c 32 #define Py_IS_FINITE(X) (!Py_IS_INFINITY(X) && !Py_IS_NAN(X))
    [all...]

Completed in 277 milliseconds