HomeSort by relevance Sort by last modified time
    Searched defs:isnan (Results 1 - 25 of 38) sorted by null

1 2

  /external/catch2/include/internal/
catch_polyfills.cpp 15 bool isnan(float f) { function in namespace:Catch
16 return std::isnan(f);
18 bool isnan(double d) { function in namespace:Catch
19 return std::isnan(d);
23 bool isnan(float f) {
26 bool isnan(double d) {
  /device/google/bonito/json-c/
math_compat.h 4 /* Define isnan and isinf on Windows/MSVC */
9 #define isnan(x) _isnan(x) macro
  /device/google/crosshatch/json-c/
math_compat.h 4 /* Define isnan and isinf on Windows/MSVC */
9 #define isnan(x) _isnan(x) macro
  /external/v8/src/base/
qnx-math.h 13 #undef isnan macro
  /external/eigen/test/
fastmath.cpp 24 template<typename T> bool (isnan)(T x) { return _isnan(x); } function in namespace:std
39 std::cout << "std::isnan(" << m(3) << ") = "; check((std::isnan)(m(3)),true); std::cout << " ; numext::isnan = "; check((numext::isnan)(m(3)), true); std::cout << "\n";
48 VERIFY( (numext::isnan)(m(3)) );
58 std::cout << "std::isnan(" << m(4) << ") = "; check((std::isnan)(m(4)),false); std::cout << " ; numext::isnan = "; check((numext::isnan)(m(4)), false); std::cout << "\n"
    [all...]
boostmultiprec.cpp 62 #undef isnan macro
107 using boost::math::isnan;
main.h 59 #define isnan(X) please_protect_your_isnan_with_parentheses macro
  /external/libcxx/include/
math.h 143 bool isnan(arithmetic x);
502 // isnan
504 #ifdef isnan
511 return isnan(__lcpp_x);
514 #undef isnan macro
519 isnan(_A1 __lcpp_x) _NOEXCEPT
527 isnan(_A1) _NOEXCEPT
533 isnan(float __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x); }
537 isnan(double __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x); }
541 isnan(long double __lcpp_x) _NOEXCEPT { return __libcpp_isnan(__lcpp_x);
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
eigen_tensor_reduced_instantiations_oss.h 31 #undef isnan macro
  /external/tensorflow/tensorflow/lite/kernels/internal/optimized/
eigen_tensor_reduced_instantiations_google.h 31 #undef isnan macro
eigen_tensor_reduced_instantiations_oss.h 31 #undef isnan macro
  /external/libxml2/include/
win32config.h 52 #ifndef isnan
53 #define isnan(d) (_isnan(d)) macro
73 #ifndef isnan
74 static int isnan (double d) { function
  /external/libxml2/win32/VC10/
config.h 51 #ifndef isnan
52 #define isnan(d) (_isnan(d)) macro
72 #ifndef isnan
73 static int isnan (double d) { function
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 107 __DEVICE__ bool isnan(float __x) { return ::__isnanf(__x); } function
108 __DEVICE__ bool isnan(double __x) { return ::__isnan(__x); } function
  /external/protobuf/python/google/protobuf/internal/
generator_test.py 91 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
93 def isnan(val): function in function:GeneratorTest.testExtremeDefaultValues
98 return not isnan(val) and isnan(val * 0)
104 self.assertTrue(isnan(message.nan_double))
110 self.assertTrue(isnan(message.nan_float))
  /bionic/libc/include/
math.h 69 #define isnan(x) __builtin_isnan(x) macro
317 * specify them either). Exposing these means that isinf and isnan will have a
321 * <cmath> will `#undef isnan` from math.h and only adds the function overloads
323 * included by a lot of other standard headers) and ::isnan.
326 int (isnan)(double __x) __attribute_const__;
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 40 #undef isnan macro
41 #define isnan(x) ((x) != (x)) macro
288 if (isnan(x) || isnan(y)) {
372 if (isnan(x) || isnan(y)) {
441 if (isnan(rx) && isnan(ry))
445 if (isnan(rx))
448 if (isnan(ry)
    [all...]
catrigf.c 54 #undef isnan macro
55 #define isnan(x) ((x) != (x)) macro
159 if (isnan(x) || isnan(y)) {
217 if (isnan(x) || isnan(y)) {
270 if (isnan(rx) && isnan(ry))
272 if (isnan(rx))
274 if (isnan(ry)
    [all...]
catrigl.c 54 #undef isnan macro
55 #define isnan(x) ((x) != (x)) macro
178 if (isnan(x) || isnan(y)) {
237 if (isnan(x) || isnan(y)) {
290 if (isnan(rx) && isnan(ry))
292 if (isnan(rx))
294 if (isnan(ry)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
math.h 82 /* C99 7.12.3.4 int isnan(real-floating x) */
84 #define isnan(__x) __isnan(__x) macro
86 #define isnan(__x) __fpmacro_unary_floating(isnan, __x) macro
  /external/eigen/Eigen/src/Core/
MathFunctions.h 764 return (::isnan)(x);
766 using std::isnan;
767 return isnan EIGEN_NOT_A_MACRO (x);
972 template<typename T> EIGEN_DEVICE_FUNC bool (isnan) (const T &x) { return internal::isnan_impl(x); } function in namespace:Eigen::numext
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 372 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bool (isnan)(const half& a) { function in namespace:Eigen::half_impl
380 return !(isinf EIGEN_NOT_A_MACRO (a)) && !(isnan EIGEN_NOT_A_MACRO (a));
615 bool (isnan)(const Eigen::half& h) { function in namespace:Eigen::numext
616 return (half_impl::isnan)(h);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 457 (isnan)() const { function in class:Eigen::TensorBase
    [all...]
  /external/tensorflow/tensorflow/core/lib/bfloat16/
bfloat16.h 394 return ::isnan(x);
396 return std::isnan(x);
493 inline bool isnan(const bfloat16& a) { return std::isnan(float(a)); } function in namespace:std
  /external/virglrenderer/src/gallium/auxiliary/util/
u_math.h 117 #define isnan(x) _isnan((double)(x)) macro

Completed in 755 milliseconds

1 2