/external/catch2/include/internal/ |
D | catch_polyfills.cpp | 24 return std::_isnan(f); 27 return std::_isnan(d);
|
/external/protobuf/src/google/protobuf/stubs/ |
D | mathutil.h | 50 return _isnan(value); in IsNan() 58 return _isnan(value); in IsNan()
|
D | mathlimits.h | 227 static bool IsNaN(const Type x) { return _isnan(x); } \
|
/external/python/cpython3/PC/ |
D | pyconfig.h | 190 #define Py_IS_NAN _isnan 191 #define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
|
/external/python/cpython2/PC/ |
D | pyconfig.h | 224 #define Py_IS_NAN _isnan 225 #define Py_IS_INFINITY(X) (!_finite(X) && !_isnan(X))
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | IsNAN.cpp | 25 #define isnan _isnan
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 713 def _isnan(self): member in Decimal 751 self_is_nan = self._isnan() 755 other_is_nan = other._isnan() 1608 if self._isnan(): 1619 if self._isnan(): 1668 if self._isnan(): 1977 self_is_nan = self._isnan() 1978 other_is_nan = other._isnan() 1979 modulo_is_nan = modulo._isnan() 2826 sn = self._isnan() [all …]
|
/external/python/cpython2/Lib/ |
D | decimal.py | 699 def _isnan(self): member in Decimal 737 self_is_nan = self._isnan() 741 other_is_nan = other._isnan() 1582 if self._isnan(): 1593 if self._isnan(): 1649 if self._isnan(): 1865 self_is_nan = self._isnan() 1866 other_is_nan = other._isnan() 1867 modulo_is_nan = modulo._isnan() 2724 sn = self._isnan() [all …]
|
/external/libxml2/win32/VC10/ |
D | config.h | 52 #define isnan(d) (_isnan(d))
|
/external/libxml2/include/ |
D | win32config.h | 53 #define isnan(d) (_isnan(d))
|
/external/fonttools/Lib/fontTools/misc/ |
D | py23.py | 315 _isnan = _math.isnan variable 337 return not (_isnan(f) or _isinf(f))
|
/external/ImageMagick/MagickCore/ |
D | magick-type.h | 179 # define IsNaN(a) _isnan(a)
|
/external/compiler-rt/lib/builtins/ |
D | int_math.h | 43 #define crt_isnan(x) _isnan((x))
|
/external/eigen/test/ |
D | fastmath.cpp | 24 template<typename T> bool (isnan)(T x) { return _isnan(x); }
|
/external/icu/icu4c/source/test/intltest/ |
D | winnmtst.cpp | 101 } while (_isnan(ran)); in randomDouble()
|
D | numfmtst.cpp | 53 return _isnan(x); in isnan()
|
/external/libxml2/ |
D | trionan.c | 390 return _isnan(number) ? TRIO_TRUE : TRIO_FALSE;
|
/external/eigen/Eigen/src/Core/ |
D | MathFunctions.h | 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; }
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_math.h | 117 #define isnan(x) _isnan((double)(x))
|
/external/dynamic_depth/internal/base/ |
D | port.h | 1063 #define isnan _isnan
|
/external/deqp-deps/glslang/SPIRV/ |
D | hex_float.h | 30 return ::_isnan(f) != 0; in isnan()
|
/external/libvpx/libvpx/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 32 inline bool isnan(double val) { return !!_isnan(val); } in isnan()
|
/external/libvpx/libwebm/mkvparser/ |
D | mkvparser.cc | 32 inline bool isnan(double val) { return !!_isnan(val); } in isnan()
|
/external/libaom/libaom/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 32 inline bool isnan(double val) { return !!_isnan(val); } in isnan()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 9914 return std::_isnan(f); 9917 return std::_isnan(d);
|