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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/autoconf/m4/
func_isinf.m4 2 # This function determins if the the isinf function isavailable on this
7 [isinf], [<math.h>],
8 [float f; isinf(f);])
10 AC_DEFINE([HAVE_ISINF_IN_MATH_H],1,[Set to 1 if the isinf function is found in <math.h>])
14 [isinf], [<cmath>],
15 [float f; isinf(f);])
17 AC_DEFINE([HAVE_ISINF_IN_CMATH],1,[Set to 1 if the isinf function is found in <cmath>])
21 [std::isinf], [<cmath>],
22 [float f; std::isinf(f)}])
24 AC_DEFINE([HAVE_STD_ISINF_IN_CMATH],1,[Set to 1 if the std::isinf function is found in <cmath>])
    [all...]
  /external/eigen/doc/snippets/
Cwise_isInf.cpp 5 cout << isinf(v) << endl;
  /prebuilts/go/darwin-x86/src/math/cmplx/
isinf.go 9 // IsInf returns true if either real(x) or imag(x) is an infinity.
10 func IsInf(x complex128) bool {
11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
isnan.go 13 case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
  /prebuilts/go/linux-x86/src/math/cmplx/
isinf.go 9 // IsInf returns true if either real(x) or imag(x) is an infinity.
10 func IsInf(x complex128) bool {
11 if math.IsInf(real(x), 0) || math.IsInf(imag(x), 0) {
isnan.go 13 case math.IsInf(real(x), 0) || math.IsInf(imag(x), 0):
  /hardware/qcom/msm8998/json-c/
math_compat.h 4 /* Define isnan and isinf on Windows/MSVC */
16 #define isinf(x) (!_finite(x)) macro
  /external/swiftshader/third_party/LLVM/lib/Support/
IsInf.cpp 1 //===-- IsInf.cpp - Platform-independent wrapper around C99 isinf() -------===//
10 // Platform-independent wrapper around C99 isinf()
22 using std::isinf;
27 static int isinf(double x) { return !finite(x) && x==x; }
30 #define isinf(X) (!_finite(X))
32 // GCC's fixincludes seems to be removing the isinf() declaration from the
35 static int isinf(double x) { return !finite(x) && x==x; }
39 static int isinf(double x) { return ((x) == INFINITY) || ((x) == -INFINITY); }
41 # error "Don't know how to get isinf()"
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
math_h_isinf.pass.cpp 12 // isinf
22 #ifdef isinf
23 #error isinf defined
25 static_assert((std::is_same<decltype(isinf((float)0)), bool>::value), "");
26 static_assert((std::is_same<decltype(isinf((double)0)), bool>::value), "");
27 static_assert((std::is_same<decltype(isinf(0)), bool>::value), "");
28 static_assert((std::is_same<decltype(isinf((long double)0)), bool>::value), "");
29 assert(isinf(-1.0) == false);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/c.math/
cmath_isinf.pass.cpp 12 // isinf
22 #ifdef isinf
23 #error isinf defined
25 static_assert((std::is_same<decltype(std::isinf((float)0)), bool>::value), "");
26 static_assert((std::is_same<decltype(std::isinf((double)0)), bool>::value), "");
27 static_assert((std::is_same<decltype(std::isinf(0)), bool>::value), "");
28 static_assert((std::is_same<decltype(std::isinf((long double)0)), bool>::value), "");
29 assert(std::isinf(-1.0) == false);
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/lib64/clang/5.0/include/
__clang_cuda_complex_builtins.h 43 if (std::isinf(__a) || std::isinf(__b)) {
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a);
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b);
52 if (std::isinf(__c) || std::isinf(__d)) {
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c);
54 __d = std::copysign(std::isinf(__d) ? 1 : 0, __d);
61 if (!__recalc && (std::isinf(__ac) || std::isinf(__bd) |
    [all...]
  /external/eigen/test/
fastmath.cpp 25 template<typename T> bool (isinf)(T x) { return _fpclass(x)==_FPCLASS_NINF || _fpclass(x)==_FPCLASS_PINF; } function in namespace:std
38 std::cout << "std::isinf(" << m(3) << ") = "; check((std::isinf)(m(3)),false); std::cout << " ; numext::isinf = "; check((numext::isinf)(m(3)), false); std::cout << "\n";
47 VERIFY( !(numext::isinf)(m(3)) );
57 std::cout << "std::isinf(" << m(4) << ") = "; check((std::isinf)(m(4)),true); std::cout << " ; numext::isinf = "; check((numext::isinf)(m(4)), true); std::cout << "\n"
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
acosh.pass.cpp 58 else if (std::isfinite(testcases[i].real()) && std::isinf(testcases[i].imag()))
60 assert(std::isinf(r.real()));
72 else if (std::isinf(testcases[i].real()) && testcases[i].real() < 0 && std::isfinite(testcases[i].imag()))
74 assert(std::isinf(r.real()));
81 else if (std::isinf(testcases[i].real()) && testcases[i].real() > 0 && std::isfinite(testcases[i].imag()))
83 assert(std::isinf(r.real()));
88 else if (std::isinf(testcases[i].real()) && testcases[i].real() < 0 && std::isinf(testcases[i].imag()))
90 assert(std::isinf(r.real()));
97 else if (std::isinf(testcases[i].real()) && testcases[i].real() > 0 && std::isinf(testcases[i].imag())
    [all...]
  /external/v8/src/base/
qnx-math.h 12 #undef isinf macro
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
acosh.pass.cpp 58 else if (std::isfinite(x[i].real()) && std::isinf(x[i].imag()))
60 assert(std::isinf(r.real()));
72 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isfinite(x[i].imag()))
74 assert(std::isinf(r.real()));
81 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isfinite(x[i].imag()))
83 assert(std::isinf(r.real()));
88 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isinf(x[i].imag()))
90 assert(std::isinf(r.real()));
97 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isinf(x[i].imag())
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.transcendentals/
acosh.pass.cpp 58 else if (std::isfinite(x[i].real()) && std::isinf(x[i].imag()))
60 assert(std::isinf(r.real()));
72 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isfinite(x[i].imag()))
74 assert(std::isinf(r.real()));
81 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isfinite(x[i].imag()))
83 assert(std::isinf(r.real()));
88 else if (std::isinf(x[i].real()) && x[i].real() < 0 && std::isinf(x[i].imag()))
90 assert(std::isinf(r.real()));
97 else if (std::isinf(x[i].real()) && x[i].real() > 0 && std::isinf(x[i].imag())
    [all...]

Completed in 1078 milliseconds

1 2 3 4 5 6 7 8 91011>>