/external/spirv-llvm/lib/SPIRV/ |
OCLUtil.h | 170 const static char IsInf[] = "isinf"; 545 _SPIRV_OP(isinf, IsInf)
|
/prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/ |
cmath | 145 bool isinf(arithmetic x); 316 using ::isinf; 583 return isinf(__lcpp_x); 592 return isinf(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/ |
cmath | 145 bool isinf(arithmetic x); 316 using ::isinf; 583 return isinf(__lcpp_x); 592 return isinf(__lcpp_x);
|
/prebuilts/go/darwin-x86/src/math/ |
asinh.go | 46 if IsNaN(x) || IsInf(x, 0) {
|
cbrt.go | 38 case x == 0 || IsNaN(x) || IsInf(x, 0):
|
erf.go | 197 case IsInf(x, 1): 199 case IsInf(x, -1): 271 case IsInf(x, 1): 273 case IsInf(x, -1):
|
sin.go | 128 case IsNaN(x) || IsInf(x, 0): 187 case IsInf(x, 0):
|
/prebuilts/go/linux-x86/src/math/ |
asinh.go | 46 if IsNaN(x) || IsInf(x, 0) {
|
cbrt.go | 38 case x == 0 || IsNaN(x) || IsInf(x, 0):
|
erf.go | 197 case IsInf(x, 1): 199 case IsInf(x, -1): 271 case IsInf(x, 1): 273 case IsInf(x, -1):
|
sin.go | 128 case IsNaN(x) || IsInf(x, 0): 187 case IsInf(x, 0):
|
/prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
math_win32.h | 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/ |
math_win32.h | 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/win32/ |
math_win32.h | 31 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
|
/bionic/tests/ |
math_test.cpp | 28 // stlport implementation does this only for signbit, isfinite, isinf and 47 return isinf(in); 131 TEST(math, isinf) { 235 // The isinf macro deals with all three types; the isinf function is for doubles. 236 ASSERT_FALSE((isinf)(123.0)); 237 ASSERT_TRUE((isinf)(HUGE_VAL)); 897 ASSERT_TRUE(isinf(logb(HUGE_VAL))); 913 ASSERT_TRUE(isinf(logbl(HUGE_VALL))); 921 ASSERT_TRUE(isinf(log1p(HUGE_VAL))) [all...] |
/external/clang/lib/Headers/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/prebuilts/ndk/r11/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 137 static inline bool _Stl_is_inf(double x) { return isinf(x); } 138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; } 139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } 144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } 145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } 195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); } 196 static inline bool _Stl_is_inf(double x) { return isinf(x); } 197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); } [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 137 static inline bool _Stl_is_inf(double x) { return isinf(x); } 138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; } 139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; } 144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); } 145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); } 195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); } 196 static inline bool _Stl_is_inf(double x) { return isinf(x); } 197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); } [all...] |
/prebuilts/sdk/renderscript/clang-include/ |
__clang_cuda_cmath.h | 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function 74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
|
/external/eigen/doc/ |
CoeffwiseMathFunctionsTable.dox | 380 a.\link ArrayBase::isInf isInf\endlink(); \n 381 \link Eigen::isinf isinf\endlink(a); 385 plus \c using <a href="http://en.cppreference.com/w/cpp/numeric/math/isinf">\c std::isinf </a>; \cpp11</td>
|
/prebuilts/go/darwin-x86/pkg/darwin_amd64/math/ |
cmplx.a | 16 cmplx 9|SGOROOT/src/math/cmplx/abs.goAbs x·2 0sin.gofAsin Asinh 6Acos Acosh TAtan 0 Atanh .
conj.goConj .exp.gofExp .isinf.go IsInf |