HomeSort by relevance Sort by last modified time
    Searched full:_isnan (Results 1 - 25 of 67) sorted by null

1 2 3

  /dalvik/vm/mterp/x86/
OP_CMPG_DOUBLE.S 21 jp .L${opcode}_isNaN
31 .L${opcode}_isNaN:
cvtfp_int.S 47 jp .L${opcode}_isNaN
53 .L${opcode}_isNaN:
  /external/chromium_org/base/
float_util.h 30 return _isnan(number) != 0;
  /external/chromium_org/third_party/libxml/src/include/
win32config.h 55 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
57 #define isnan(d) (_isnan(d))
  /external/chromium_org/third_party/libxml/win32/
config.h 55 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
57 #define isnan(d) (_isnan(d))
  /external/chromium_org/third_party/libxslt/libxslt/
win32config.h 42 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
44 #define isnan(d) (_isnan(d))
  /external/ceres-solver/include/ceres/
fpclassify.h 50 inline bool IsInfinite(double x) { return !_finite(x) && !_isnan(x); }
51 inline bool IsNaN (double x) { return _isnan(x); }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 29 return !isfinite(num) && !_isnan(num);
33 return _isnan(num) != 0;
  /external/llvm/lib/Support/
IsNAN.cpp 25 #define isnan _isnan
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pymath.h 91 * Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
112 * FIXME: PC/pyconfig.h defines Py_IS_INFINITY as (!_finite(X) && !_isnan(X))
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pymath.h 91 * Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
112 * FIXME: PC/pyconfig.h defines Py_IS_INFINITY as (!_finite(X) && !_isnan(X))
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 69 #define sk_float_isnan(x) _isnan(x)
  /external/chromium_org/v8/src/
win32-math.cc 49 return _isnan(x);
  /external/skia/include/core/
SkFloatingPoint.h 69 #define sk_float_isnan(x) _isnan(x)
  /external/v8/src/
win32-math.cc 56 return _isnan(x);
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 157 inline bool isinf(double num) { return !_finite(num) && !_isnan(num); }
158 inline bool isnan(double num) { return !!_isnan(num); }
  /external/chromium_org/third_party/icu/source/test/intltest/
winnmtst.cpp 96 } while (_isnan(ran));
  /external/icu4c/test/intltest/
winnmtst.cpp 96 } while (_isnan(ran));
  /external/chromium_org/third_party/libxml/src/
trionan.c 387 * Microsoft Visual C++ and Borland C++ Builder have an _isnan()
390 return _isnan(number) ? TRIO_TRUE : TRIO_FALSE;
  /external/libxml2/
trionan.c 387 * Microsoft Visual C++ and Borland C++ Builder have an _isnan()
390 return _isnan(number) ? TRIO_TRUE : TRIO_FALSE;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 700 def _isnan(self): member in class:Decimal
738 self_is_nan = self._isnan()
742 other_is_nan = other._isnan()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 700 def _isnan(self): member in class:Decimal
738 self_is_nan = self._isnan()
742 other_is_nan = other._isnan()
    [all...]
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 22 inline bool isnan(double num) { return !!_isnan(num); }
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 116 #define isnan(x) _isnan((double)(x))
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 116 #define isnan(x) _isnan((double)(x))

Completed in 1401 milliseconds

1 2 3