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

1 2 3

  /external/swiftshader/third_party/LLVM/lib/Support/
IsNAN.cpp 25 #define isnan _isnan
  /hardware/qcom/msm8998/json-c/
math_compat.h 9 #define isnan(x) _isnan(x)
  /prebuilts/ndk/r10/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/r11/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/r13/sources/cxx-stl/llvm-libc++/include/support/win32/
math_win32.h 33 return !isfinite(num) && !_isnan(num);
37 return _isnan(num) != 0;
  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 50 return _isnan(value);
58 return _isnan(value);
mathlimits.h 227 static bool IsNaN(const Type x) { return _isnan(x); } \
  /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/python/cpython2/PC/
pyconfig.h 224 #define Py_IS_NAN _isnan
225 #define Py_IS_INFINITY(X) (!_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/fxbarcode/
utils.h 28 #define FXSYS_isnan(x) _isnan(x)
  /external/eigen/test/
fastmath.cpp 24 template<typename T> bool (isnan)(T x) { return _isnan(x); }
  /external/skia/include/private/
SkFloatingPoint.h 72 #define sk_float_isnan(x) _isnan(x)
  /external/python/cpython2/Lib/
decimal.py 699 def _isnan(self): member in class:Decimal
737 self_is_nan = self._isnan()
741 other_is_nan = other._isnan()
    [all...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 700 def _isnan(self): member in class:Decimal
738 self_is_nan = self._isnan()
742 other_is_nan = other._isnan()
    [all...]
  /external/icu/icu4c/source/test/intltest/
winnmtst.cpp 97 } 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/eigen/Eigen/src/Core/
MathFunctions.h 782 //MSVC defines a _isnan builtin function, but for double only
783 EIGEN_DEVICE_FUNC inline bool isnan_impl(const long double& x) { return _isnan(x)!=0; }
784 EIGEN_DEVICE_FUNC inline bool isnan_impl(const double& x) { return _isnan(x)!=0; }
785 EIGEN_DEVICE_FUNC inline bool isnan_impl(const float& x) { return _isnan(x)!=0; }
    [all...]
  /external/libxml2/
trionan.c 387 * Microsoft Visual C++ and Borland C++ Builder have an _isnan()
390 return _isnan(number) ? TRIO_TRUE : TRIO_FALSE;

Completed in 964 milliseconds

1 2 3