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

1 2 3 4

  /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 51 inline bool IsInfinite(double x) { return _finite(x) == 0 && _isnan(x) == 0; }
52 inline bool IsNaN (double x) { return _isnan(x) != 0; }
  /external/libcxx/include/support/win32/
math_win32.h 31 return !isfinite(num) && !_isnan(num);
35 return _isnan(num) != 0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 31 return !isfinite(num) && !_isnan(num);
35 return _isnan(num) != 0;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 31 return !isfinite(num) && !_isnan(num);
35 return _isnan(num) != 0;
  /external/llvm/lib/Support/
IsNAN.cpp 25 #define isnan _isnan
  /external/chromium_org/v8/src/base/
win32-math.cc 24 return _isnan(x);
  /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/WebKit/Source/wtf/
MathExtras.h 128 inline bool isinf(double num) { return !_finite(num) && !_isnan(num); }
129 inline bool isnan(double num) { return !!_isnan(num); }
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 92 #define sk_float_isnan(x) _isnan(x)
  /external/skia/include/core/
SkFloatingPoint.h 90 #define sk_float_isnan(x) _isnan(x)
  /external/chromium_org/third_party/icu/source/test/intltest/
winnmtst.cpp 96 } while (_isnan(ran));
  /external/icu/icu4c/source/test/intltest/
winnmtst.cpp 96 } while (_isnan(ran));
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
float.h 286 _CRTIMP int __cdecl __MINGW_NOTHROW _isnan (double);
  /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 117 #define isnan(x) _isnan((double)(x))
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 116 #define isnan(x) _isnan((double)(x))

Completed in 2020 milliseconds

1 2 3 4