HomeSort by relevance Sort by last modified time
    Searched full:complex (Results 176 - 200 of 2438) sorted by null

1 2 3 4 5 6 78 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.transcendentals/
asinh.pass.cpp 10 // <complex>
13 // complex<T>
14 // asinh(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
37 typedef std::complex<double> C;
42 std::complex<double> r = asinh(x[i])
    [all...]
atanh.pass.cpp 10 // <complex>
13 // complex<T>
14 // atanh(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
37 typedef std::complex<double> C;
42 std::complex<double> r = atanh(x[i])
    [all...]
cosh.pass.cpp 10 // <complex>
13 // complex<T>
14 // cosh(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(1, 0));
37 typedef std::complex<double> C;
42 std::complex<double> r = cosh(x[i])
    [all...]
sinh.pass.cpp 10 // <complex>
13 // complex<T>
14 // sinh(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
37 typedef std::complex<double> C;
42 std::complex<double> r = sinh(x[i])
    [all...]
sqrt.pass.cpp 10 // <complex>
13 // complex<T>
14 // sqrt(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
25 std::complex<T> a = sqrt(c);
34 test(std::complex<T>(64, 0), std::complex<T>(8, 0));
42 std::complex<double> r = sqrt(x[i])
    [all...]
tanh.pass.cpp 10 // <complex>
13 // complex<T>
14 // tanh(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
37 typedef std::complex<double> C;
42 std::complex<double> r = tanh(x[i])
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
MarketIO.h 34 inline bool GetMarketLine (std::stringstream& line, int& M, int& N, int& i, int& j, std::complex<Scalar>& value)
42 value = std::complex<Scalar>(valR, valI);
57 inline void GetVectorElt (const std::string& line, std::complex<RealScalar>& val)
62 val = std::complex<RealScalar>(valR, valI);
69 if(internal::is_same<Scalar, std::complex<float> >::value || internal::is_same<Scalar, std::complex<double> >::value)
71 header += " complex";
90 inline void PutMatrixElt(std::complex<Scalar> value, int row, int col, std::ofstream& out)
102 inline void putVectorElt(std::complex<Scalar> value, std::ofstream& out)
125 if(substr[3].compare("complex") == 0) iscomplex = true
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_ccoshf.c 28 * Hyperbolic cosine of a complex argument. See s_ccosh.c for details.
34 #include <complex.h>
41 float complex
42 ccoshf(float complex z)
99 float complex
100 ccosf(float complex z)
s_csinhf.c 28 * Hyperbolic sine of a complex argument z. See s_csinh.c for details.
34 #include <complex.h>
41 float complex
42 csinhf(float complex z)
99 float complex
100 csinf(float complex z)
s_cproj.c 30 #include <complex.h>
35 double complex
36 cproj(double complex z)
  /external/eigen/test/
conservative_resize.cpp 104 CALL_SUBTEST_4((run_matrix_tests<std::complex<float>, Eigen::RowMajor>()));
105 CALL_SUBTEST_4((run_matrix_tests<std::complex<float>, Eigen::ColMajor>()));
106 CALL_SUBTEST_5((run_matrix_tests<std::complex<double>, Eigen::RowMajor>()));
107 CALL_SUBTEST_6((run_matrix_tests<std::complex<double>, Eigen::ColMajor>()));
112 CALL_SUBTEST_4((run_vector_tests<std::complex<float> >()));
113 CALL_SUBTEST_5((run_vector_tests<std::complex<double> >()));
eigensolver_generic.cpp 28 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex;
37 VERIFY_IS_APPROX((symmA.template cast<Complex>()) * (ei0.pseudoEigenvectors().template cast<Complex>()),
38 (ei0.pseudoEigenvectors().template cast<Complex>()) * (ei0.eigenvalues().asDiagonal()));
43 VERIFY_IS_APPROX(a.template cast<Complex>() * ei1.eigenvectors(),
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 18 template<> std::string type_name<std::complex<float> >() { return "complex<float>"; }
19 template<> std::string type_name<std::complex<double> >() { return "complex<double>"; }
20 template<> std::string type_name<std::complex<int> >() { return "complex<int>"; }
eigen2_mixingtypes.cpp 26 typedef Matrix<std::complex<float>, SizeAtCompileType, SizeAtCompileType> Mat_cf;
27 typedef Matrix<std::complex<double>, SizeAtCompileType, SizeAtCompileType> Mat_cd;
30 typedef Matrix<std::complex<float>, SizeAtCompileType, 1> Vec_cf;
31 typedef Matrix<std::complex<double>, SizeAtCompileType, 1> Vec_cd;
main.h 155 template<> inline float test_precision<std::complex<float> >() { return test_precision<float>(); }
156 template<> inline double test_precision<std::complex<double> >() { return test_precision<double>(); }
180 inline bool test_ei_isApprox(const std::complex<float>& a, const std::complex<float>& b)
181 { return ei_isApprox(a, b, test_precision<std::complex<float> >()); }
182 inline bool test_ei_isMuchSmallerThan(const std::complex<float>& a, const std::complex<float>& b)
183 { return ei_isMuchSmallerThan(a, b, test_precision<std::complex<float> >()); }
185 inline bool test_ei_isApprox(const std::complex<double>& a, const std::complex<double>& b
    [all...]
  /external/icu4c/i18n/
strrepl.h 31 * stand-ins is called a <em>complex</em> StringReplacer. A complex
32 * StringReplacer has a slower processing loop than a non-complex one.
56 * A complex object contains nested replacers and requires more
57 * complex processing. StringReplacers are initially assumed to
58 * be complex. If no nested replacers are seen during processing,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
complex.h 20 * ISO C99: 7.3 Complex arithmetic <complex.h>
35 types `float complex' and `double complex'. */
40 #define complex _Complex macro
114 #endif /* complex.h */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
complex.h 20 * ISO C99: 7.3 Complex arithmetic <complex.h>
35 types `float complex' and `double complex'. */
40 #define complex _Complex macro
114 #endif /* complex.h */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
complex.h 20 * ISO C99: 7.3 Complex arithmetic <complex.h>
35 types `float complex' and `double complex'. */
40 #define complex _Complex macro
114 #endif /* complex.h */
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.members/
real_imag.pass.cpp 10 // <complex>
15 #include <complex>
22 std::complex<T> c;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/
layout.pass.cpp 10 // <complex>
12 #include <complex>
19 std::complex<T> z;
  /external/eigen/blas/
complex_double.cpp 10 #define SCALAR std::complex<double>
complex_single.cpp 10 #define SCALAR std::complex<float>
  /external/eigen/lapack/
complex_double.cpp 10 #define SCALAR std::complex<double>
complex_single.cpp 10 #define SCALAR std::complex<float>

Completed in 2037 milliseconds

1 2 3 4 5 6 78 91011>>