HomeSort by relevance Sort by last modified time
    Searched defs:isinf (Results 51 - 70 of 70) sorted by null

1 23

  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/
__clang_cuda_cmath.h 79 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
80 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
237 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(bool, isinf);
409 // pull them in with libstdc++, because its ::isinf and ::isnan are different
410 // than its std::isinf and std::isnan.
412 using ::isinf;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
math.h 271 # define isinf(x) \ macro
274 # define isinf(x) \ macro
  /external/eigen/Eigen/src/Core/
MathFunctions.h 749 return (::isinf)(x);
751 using std::isinf;
752 return isinf EIGEN_NOT_A_MACRO (x);
973 template<typename T> EIGEN_DEVICE_FUNC bool (isinf) (const T &x) { return internal::isinf_impl(x); } function in namespace:Eigen::numext
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 369 EIGEN_STRONG_INLINE EIGEN_DEVICE_FUNC bool (isinf)(const half& a) { function in namespace:Eigen::half_impl
380 return !(isinf EIGEN_NOT_A_MACRO (a)) && !(isnan EIGEN_NOT_A_MACRO (a));
621 bool (isinf)(const Eigen::half& h) { function in namespace:Eigen::numext
622 return (half_impl::isinf)(h);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorBase.h 462 (isinf)() const { function in class:Eigen::TensorBase
    [all...]
  /external/protobuf/python/google/protobuf/internal/
message_test.py 77 # Python pre-2.6 does not have isinf() or isnan() functions, so we have
82 def isinf(val): function
86 return isinf(val) and (val > 0)
88 return isinf(val) and (val < 0)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
cwise_ops.h 655 // NOTE: std::isinf, std::isnan, std::isfinite are plain function.
659 struct isinf : base<T, Eigen::internal::scalar_isinf_op<T>, bool> {}; struct in namespace:tensorflow::functor
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
math.h 514 #define isinf(x) (fpclassify(x) == FP_INFINITE) macro
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
hex_float.h 32 bool isinf(double f) function in namespace:std
80 static bool isInfinity(float f) { return std::isinf(f); }
92 static bool isInfinity(double f) { return std::isinf(f); }
    [all...]
  /external/eigen/unsupported/test/mpreal/
mpreal.h 76 #define IsInf(x) (isinf)(x) // GNU C++/Intel ICC compiler on Linux
78 #define IsInf(x) (!_finite(x))
80 #define IsInf(x) (std::isinf)(x) // GNU C/C++ (and/or other compilers), just hope for C99 conformance
486 friend bool (isinf) (const mpreal& v);
1701 inline bool (isinf) (const mpreal& op){ return (mpfr_inf_p (op.mpfr_srcptr()) != 0 ); } function in namespace:mpfr
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.cpp 418 Int4 inf_y = IsInf(y2); // Since x2 >= y2, this means x2 == y2 == inf, so we use 45 degrees or pi/4
1099 void ShaderCore::isinf(Vector4f &dst, const Vector4f &src) function in class:sw::ShaderCore
1101 dst.x = As<Float4>(IsInf(src.x));
1102 dst.y = As<Float4>(IsInf(src.y));
1103 dst.z = As<Float4>(IsInf(src.z));
1104 dst.w = As<Float4>(IsInf(src.w));
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 318 static bool isinf(float f) { function
697 if (!isinf(v) && !isnan(v) && (v < 0.f)) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
c++config.h 673 /* Define to 1 if you have the `isinf' function. */
1503 # define isinf macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
c++config.h 673 /* Define to 1 if you have the `isinf' function. */
1503 # define isinf macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
c++config.h 673 /* Define to 1 if you have the `isinf' function. */
1503 # define isinf macro
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
c++config.h 673 /* Define to 1 if you have the `isinf' function. */
1503 # define isinf macro
    [all...]
  /external/icu/icu4c/source/test/intltest/
numfmtst.cpp 46 // replace them with std::isnan and std::isinf
55 #if defined(isinf)
56 #undef isinf macro
58 bool isinf(double x) { function in namespace:std
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvparser.cc 37 inline bool isinf(double val) { return !_finite(val); } function in namespace:mkvparser
40 inline bool isinf(double val) { return std::isinf(val); } function in namespace:mkvparser
290 if (mkvparser::isinf(result) || mkvparser::isnan(result))
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.cc 31 inline bool isinf(double val) { return !_finite(val); } function in namespace:mkvparser
34 inline bool isinf(double val) { return std::isinf(val); } function in namespace:mkvparser
284 if (mkvparser::isinf(result) || mkvparser::isnan(result))
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseHelper.cpp 4835 TIntermTyped* isinf = handleUnaryMath(loc, "isinf", EOpIsInf, intermediate.addSymbol(*tempArg, loc)); local
    [all...]

Completed in 1021 milliseconds

1 23