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

1 2 3

  /art/runtime/interpreter/mterp/x86/
cvtfp_int.S 50 jp .L${opcode}_isNaN
56 .L${opcode}_isNaN:
  /external/libxml2/include/
win32config.h 57 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
59 #define isnan(d) (_isnan(d))
  /external/libxml2/win32/VC10/
config.h 56 /* _isnan(x) returns nonzero if (x == NaN) and zero otherwise. */
58 #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 33 return !isfinite(num) && !_isnan(num);
37 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/current/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 31 return !isfinite(num) && !_isnan(num);
35 return _isnan(num) != 0;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/ImageMagick/MagickCore/
magick-type.h 166 # define IsNaN(a) _isnan(a)
  /external/compiler-rt/lib/builtins/
int_math.h 43 #define crt_isnan(x) _isnan((x))
  /external/pdfium/xfa/src/fxbarcode/
utils.h 64 #define FXSYS_isnan(x) _isnan(x)
  /external/skia/include/private/
SkFloatingPoint.h 92 #define sk_float_isnan(x) _isnan(x)
  /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/libxml2/
trionan.c 387 * Microsoft Visual C++ and Borland C++ Builder have an _isnan()
390 return _isnan(number) ? TRIO_TRUE : TRIO_FALSE;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/mesa3d/src/gallium/auxiliary/util/
u_math.h 116 #define isnan(x) _isnan((double)(x))
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker_commons.hpp 51 template <typename T> bool isnan(T value) { return _isnan(value) != 0; }
  /external/vulkan-validation-layers/libs/glm/detail/
func_common.inl 717 return _isnan(x) != 0;
720 return _isnan(x) != 0;

Completed in 822 milliseconds

1 2 3