Searched
full:complex (Results
376 -
400 of
3705) sorted by null
<<11121314151617181920>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/ |
imag.pass.cpp | 10 // <complex> 16 #include <complex> 31 constexpr std::complex<T> t{val, val}; 45 constexpr std::complex<T> t{val, val};
|
norm.pass.cpp | 10 // <complex> 16 #include <complex> 27 assert(std::norm(x) == norm(std::complex<double>(x, 0))); 35 assert(std::norm(x) == norm(std::complex<T>(x, 0)));
|
real.pass.cpp | 10 // <complex> 16 #include <complex> 31 constexpr std::complex<T> t{val, val}; 45 constexpr std::complex<T> t{val, val};
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/ |
exp.pass.cpp | 10 // <complex> 13 // complex<T> 14 // exp(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)); 40 std::complex<double> r = exp(x[i]);
|
log.pass.cpp | 10 // <complex> 13 // complex<T> 14 // log(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>(-INFINITY, 0)); 41 std::complex<double> r = log(x[i]);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/ |
mpc.info | 3 This manual is for GNU MPC, a library for multiple precision complex 17 * mpc: (mpc)Multiple Precision Complex Library. 27 Complex Library, version 1.0.1 36 * Complex Functions:: Functions for arithmetic on complex numbers. 69 arithmetic on complex numbers providing correct rounding. It implements 134 all calls to functions with only complex arguments are printed to 137 one complex result (one `c' in front of the `_'), computed from 138 two complex arguments (two `c' after the `_'). Then, the 264 File: mpc.info, Node: GNU MPC Basics, Next: Complex Functions, Prev: Reporting Bugs, Up: To [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_carg.c | 30 #include <complex.h> 34 carg(double complex z)
|
s_cargf.c | 30 #include <complex.h> 34 cargf(float complex z)
|
s_cargl.c | 30 #include <complex.h> 34 cargl(long double complex z)
|
s_cimag.c | 29 #include <complex.h> 33 cimag(double complex z)
|
s_cimagf.c | 29 #include <complex.h> 33 cimagf(float complex z)
|
s_cimagl.c | 29 #include <complex.h> 33 cimagl(long double complex z)
|
s_creal.c | 29 #include <complex.h> 32 creal(double complex z)
|
s_crealf.c | 29 #include <complex.h> 32 crealf(float complex z)
|
s_creall.c | 29 #include <complex.h> 32 creall(long double complex z)
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/arm64/ |
omxSP_FFTFwd_RToCCS_F32.c | 74 * Compute an FFT for a complex signal of length of 2^order, 87 * pSrc - pointer to the input signal, a complex-valued vector of length 93 * pDst - pointer to the complex-valued output vector, of length 2^order; 127 * Compute the RFFT using a complex FFT of one less order, so set 128 * order to be the order of the complex FFT. 200 /* Handle complex order 0 specially */ 206 * Complex FFT done. Fix up the complex result to give the correct
|
/external/eigen/Eigen/src/plugins/ |
CommonCwiseUnaryOps.h | 67 /** Overloaded for efficient real matrix times complex scalar value */ 68 inline const CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived> 69 operator*(const std::complex<Scalar>& scalar) const 71 return CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived> 72 (*static_cast<const Derived*>(this), internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >(scalar)); 79 inline friend const CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived> 80 operator*(const std::complex<Scalar>& scalar, const StorageBaseType& matrix) 97 /** \returns an expression of the complex conjugate of \c *this.
|
/external/eigen/test/eigen2/ |
eigen2_eigensolver.cpp | 29 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex; 112 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex; 122 VERIFY_IS_APPROX((symmA.template cast<Complex>()) * (ei0.pseudoEigenvectors().template cast<Complex>()), 123 (ei0.pseudoEigenvectors().template cast<Complex>()) * (ei0.eigenvalues().asDiagonal())); 127 VERIFY_IS_APPROX(a.template cast<Complex>() * ei1.eigenvectors(),
|
/external/eigen/test/ |
sizeof.cpp | 32 VERIFY(sizeof(std::complex<float>) == 2*sizeof(float)); 33 VERIFY(sizeof(std::complex<double>) == 2*sizeof(double));
|
/external/libcxx/include/ |
ccomplex | 17 #include <complex> 21 #include <complex>
|
tgmath.h | 17 #include <complex.h> 22 #include <complex.h>
|
/external/libcxx/test/numerics/complex.number/complex.literals/ |
literals1.fail.cpp | 10 #include <complex> 16 std::complex<float> foo = 1.0if; // should fail w/conversion operator not found
|
/external/libcxx/test/numerics/complex.number/ |
version.pass.cpp | 10 // <complex> 12 #include <complex>
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
tuple.by.type1.fail.cpp | 12 #include <complex> 19 typedef std::complex<float> cf;
|
tuple.by.type2.fail.cpp | 12 #include <complex> 19 typedef std::complex<float> cf;
|
Completed in 977 milliseconds
<<11121314151617181920>>