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

1 2 3 4

  /hardware/qcom/msm8998/json-c/
math_compat.h 9 #define isnan(x) _isnan(x)
configure.ac 50 AC_CHECK_DECLS([_isnan], [], [], [[#include <float.h>]])
config.h 29 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
config.h.in 28 /* Define to 1 if you have the declaration of `_isnan', and to 0 if you don't.
  /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))
  /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/swiftshader/third_party/LLVM/lib/Support/
IsNAN.cpp 25 #define isnan _isnan
  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 50 return _isnan(value);
58 return _isnan(value);
  /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/pdfium/xfa/fxbarcode/
utils.h 28 #define FXSYS_isnan(x) _isnan(x)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pymath.h 91 * Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pymath.h 91 * Note: PC/pyconfig.h defines Py_IS_NAN as _isnan
  /external/compiler-rt/lib/builtins/
int_math.h 43 #define crt_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/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/icu/icu4c/source/test/intltest/
winnmtst.cpp 97 } while (_isnan(ran));

Completed in 2360 milliseconds

1 2 3 4