Searched defs:Complex (Results 1 - 22 of 22) sorted by relevance

/external/clang/unittests/Tooling/
H A DQualTypeNamesTest.cpp168 TypeNameVisitor Complex; local
169 Complex.ExpectedQualTypeNames["CheckTX"] = "B::TX";
170 Complex.runOver(
/external/python/cpython2/Lib/test/
H A Dtest_abstract_numbers.py5 from numbers import Complex, Real, Rational, Integral namespace
11 self.assertTrue(issubclass(int, Complex))
21 self.assertTrue(issubclass(long, Complex))
39 self.assertTrue(issubclass(complex, Complex))
H A Dtest_getargs2.py98 class Complex: class in inherits:
387 self.assertEqual(getargs_D(Complex()), 4.25+0.5j)
/external/python/cpython3/Lib/test/
H A Dtest_abstract_numbers.py6 from numbers import Complex, Real, Rational, Integral namespace
11 self.assertTrue(issubclass(int, Complex))
31 self.assertTrue(issubclass(complex, Complex))
H A Dtest_getargs2.py100 class Complex: class in inherits:
407 self.assertEqual(getargs_D(Complex()), 4.25+0.5j)
/external/eigen/bench/
H A DbenchFFT.cpp47 typedef typename std::complex<Scalar> Complex; typedef
50 vector<Complex > outbuf(nfft);
/external/eigen/test/
H A Deigensolver_generic.cpp27 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex; typedef
36 VERIFY_IS_APPROX((symmA.template cast<Complex>()) * (ei0.pseudoEigenvectors().template cast<Complex>()),
37 (ei0.pseudoEigenvectors().template cast<Complex>()) * (ei0.eigenvalues().asDiagonal()));
42 VERIFY_IS_APPROX(a.template cast<Complex>() * ei1.eigenvectors(),
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_fftw_impl.h180 typedef std::complex<Scalar> Complex; typedef in struct:Eigen::internal::fftw_impl
190 void fwd( Complex * dst,const Complex *src,int nfft)
197 void fwd( Complex * dst,const Scalar * src,int nfft)
204 void fwd2(Complex * dst, const Complex * src, int n0,int n1)
211 void inv(Complex * dst,const Complex *src,int nfft)
218 void inv( Scalar * dst,const Complex * src,int nfft)
225 void inv2(Complex * ds
[all...]
H A Dei_kissfft_impl.h21 typedef std::complex<Scalar> Complex; typedef in struct:Eigen::internal::kiss_cpx_fft
22 std::vector<Complex> m_twiddles;
25 std::vector<Complex> m_scratchBuf;
36 m_twiddles[i] = exp( Complex(0,i*phinc) );
64 void work( int stage,Complex * xout, const _Src * xin, size_t fstride,size_t in_stride)
68 Complex * Fout_beg = xout;
69 Complex * Fout_end = xout + p*m;
99 void bfly2( Complex * Fout, const size_t fstride, int m)
102 Complex t = Fout[m+k] * m_twiddles[k*fstride];
109 void bfly4( Complex * Fou
268 typedef std::complex<Scalar> Complex; typedef in struct:Eigen::internal::kissfft_impl
[all...]
/external/python/cpython2/Demo/classes/
H A DComplex.py0 # Complex numbers
7 # This module represents complex numbers as instances of the class Complex.
8 # A Complex instance z has two data attribues, z.re (the real part) and z.im
13 # The following functions exist (Complex is actually a class):
14 # Complex([re [,im]) -> creates a complex number from a real and an imaginary part
23 # Complex numbers have the following methods:
62 # Complex for +,-,cmp
78 return Complex(*obj)
80 return Complex(obj)
84 return Complex(mat
96 class Complex: class in inherits:
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java31 * Representation of a Complex number - a number which has both a
48 public class Complex implements FieldElement<Complex>, Serializable { class in inherits:FieldElement,Serializable
51 public static final Complex I = new Complex(0.0, 1.0);
55 public static final Complex NaN = new Complex(Double.NaN, Double.NaN);
59 public static final Complex INF = new Complex(Double.POSITIVE_INFINITY, Double.POSITIVE_INFINITY);
62 public static final Complex ON
88 public Complex(double real, double imaginary) { method in class:Complex
[all...]
/external/eigen/blas/
H A Dcommon.h86 typedef std::complex<RealScalar> Complex; typedef
/external/eigen/unsupported/test/
H A DFFTW.cpp80 typedef typename FFT<T>::Complex Complex; typedef
83 typedef typename VectorType<Container,Complex>::type ComplexVector;
143 typedef typename FFT<T>::Complex Complex; typedef
144 typedef typename VectorType<Container,Complex>::type ComplexVector;
152 inbuf[k]= Complex( (T)(rand()/(double)RAND_MAX - .5), (T)(rand()/(double)RAND_MAX - .5) );
184 typedef typename Eigen::FFT<T>::Complex Complex;
186 Eigen::Matrix<Complex,nrow
[all...]
/external/python/cpython2/Lib/
H A Dnumbers.py11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
34 class Complex(Number): class in inherits:Number
35 """Complex defines the operations that work on the builtin complex type.
166 Complex.register(complex)
169 class Real(Complex):
170 """To Complex, Real adds the operations that work on real numbers.
248 # Concrete implementations of Complex abstract methods.
316 2-argument version described in Complex.
/external/python/cpython3/Lib/
H A Dnumbers.py10 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
32 class Complex(Number): class in inherits:Number
33 """Complex defines the operations that work on the builtin complex type.
144 Complex.register(complex)
147 class Real(Complex):
148 """To Complex, Real adds the operations that work on real numbers.
245 # Concrete implementations of Complex abstract methods.
315 2-argument version described in Complex.
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c35 double _Complex Complex; // not supported variable
/external/javassist/src/test/test/javassist/convert/
H A DArrayAccessReplaceTest.java29 CtClass clazz = pool.get(ArrayAccessReplaceTest.class.getName() + "$Complex");
390 public static class Complex implements ComplexInterface { class in class:ArrayAccessReplaceTest
/external/clang/test/CodeGenCXX/
H A Dmangle-ms.cpp458 namespace Complex { namespace
459 // CHECK-DAG: define void @"\01?f@Complex@@YAXU?$_Complex@H@__clang@@@Z"(
/external/clang/lib/CodeGen/
H A DCGValue.h39 enum Flavor { Scalar, Complex, Aggregate }; enumerator in enum:clang::CodeGen::RValue::Flavor
52 bool isComplex() const { return V1.getInt() == Complex; }
96 ER.V1.setInt(Complex);
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h249 Complex = 28, member in class:llvm::pdb::PDB_Checksum::PDB_Machine::PDB_BuiltinType
/external/tensorflow/tensorflow/compiler/xla/client/
H A Dcomputation_builder.cc806 ComputationDataHandle ComputationBuilder::Complex( function in class:xla::ComputationBuilder
814 return Complex(Real(operand), Neg(Imag(operand)));
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 633 milliseconds