/external/chromium_org/third_party/WebKit/Source/wtf/ |
Complex.h | 32 #include <complex> 37 typedef std::complex<double> Complex; 39 inline Complex complexFromMagnitudePhase(double magnitude, double phase) 41 return Complex(magnitude * cos(phase), magnitude * sin(phase)); 46 using WTF::Complex;
|
/external/eigen/bench/ |
benchFFT.cpp | 13 #include <complex> 47 typedef typename std::complex<Scalar> Complex; 50 vector<Complex > outbuf(nfft); 82 cout << "complex"; 99 bench<complex<float> >(NFFT,true); 100 bench<complex<float> >(NFFT,false); 106 bench<complex<double> >(NFFT,true); 107 bench<complex<double> >(NFFT,false); 110 bench<complex<long double> >(NFFT,true) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_abstract_numbers.py | 5 from numbers import Complex, Real, Rational, Integral 11 self.assertTrue(issubclass(int, Complex)) 21 self.assertTrue(issubclass(long, Complex)) 38 self.assertFalse(issubclass(complex, Real)) 39 self.assertTrue(issubclass(complex, Complex)) 41 c1, c2 = complex(3, 2), complex(4,1)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_abstract_numbers.py | 5 from numbers import Complex, Real, Rational, Integral 11 self.assertTrue(issubclass(int, Complex)) 21 self.assertTrue(issubclass(long, Complex)) 38 self.assertFalse(issubclass(complex, Real)) 39 self.assertTrue(issubclass(complex, Complex)) 41 c1, c2 = complex(3, 2), complex(4,1)
|
/external/eigen/test/ |
eigensolver_complex.cpp | 46 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex; 101 CALL_SUBTEST_3( eigensolver(Matrix<std::complex<float>, 1, 1>()) ); 108 CALL_SUBTEST_3( eigensolver_verify_assert(Matrix<std::complex<float>, 1, 1>()) );
|
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(),
|
eigensolver_selfadjoint.cpp | 28 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex; 130 CALL_SUBTEST_9( selfadjointeigensolver(Matrix<std::complex<double>,Dynamic,Dynamic,RowMajor>(s,s)) );
|
/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/unsupported/Eigen/src/FFT/ |
ei_fftw_impl.h | 20 // 2. fftw_complex is compatible with std::complex 21 // This assumes std::complex<T> layout is array of size 2 with real,imag 30 fftw_complex * fftw_cast( const std::complex<double> * p) 36 fftwf_complex * fftw_cast( const std::complex<float> * p) 42 fftwl_complex * fftw_cast( const std::complex<long double> * p) 180 typedef std::complex<Scalar> Complex; 188 // complex-to-complex forward FFT 190 void fwd( Complex * dst,const Complex *src,int nfft [all...] |
ei_kissfft_impl.h | 21 typedef std::complex<Scalar> Complex; 22 std::vector<Complex> m_twiddles; 25 std::vector<Complex> m_scratchBuf; 35 m_twiddles[i] = exp( Complex(0,i*phinc) ); 63 void work( int stage,Complex * xout, const _Src * xin, size_t fstride,size_t in_stride) 67 Complex * Fout_beg = xout; 68 Complex * Fout_end = xout + p*m; 98 void bfly2( Complex * Fout, const size_t fstride, int m) 101 Complex t = Fout[m+k] * m_twiddles[k*fstride] [all...] |
/external/eigen/blas/ |
common.h | 14 #include <complex> 83 typedef std::complex<RealScalar> Complex;
|
/external/eigen/unsupported/test/ |
FFTW.cpp | 14 std::complex<T> RandomCpx() { return std::complex<T>( (T)(rand()/(T)RAND_MAX - .5), (T)(rand()/(T)RAND_MAX - .5) ); } 24 complex<long double> promote(complex<T> x) { return complex<long double>(x.real(),x.imag()); } 26 complex<long double> promote(float x) { return complex<long double>( x); } 27 complex<long double> promote(double x) { return complex<long double>( x); } 28 complex<long double> promote(long double x) { return complex<long double>( x); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
numbers.py | 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"] 34 class Complex(Number): 35 """Complex defines the operations that work on the builtin complex type. 37 In short, those are: a conversion to complex, .real, .imag, +, -, 41 knowledge about them, it should fall back to the builtin complex 49 """Return a builtin complex instance. Called for complex(self).""" 138 """self**exponent; should promote to float or complex when necessary.""" 166 Complex.register(complex [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
numbers.py | 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"] 34 class Complex(Number): 35 """Complex defines the operations that work on the builtin complex type. 37 In short, those are: a conversion to complex, .real, .imag, +, -, 41 knowledge about them, it should fall back to the builtin complex 49 """Return a builtin complex instance. Called for complex(self).""" 138 """self**exponent; should promote to float or complex when necessary.""" 166 Complex.register(complex [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
Font.h | 39 // "X11/X.h" defines Complex to 0 and conflicts 40 // with Complex value in CodePath enum. 41 #ifdef Complex 42 #undef Complex 165 enum CodePath { Auto, Simple, Complex, SimpleWithGlyphOverflow };
|
/external/clang/lib/CodeGen/ |
CGValue.h | 35 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the 38 enum Flavor { Scalar, Complex, Aggregate }; 47 bool isComplex() const { return V1.getInt() == Complex; } 58 /// getComplexVal - Return the real/imag components of this complex value. 81 ER.V1.setInt(Complex);
|
CGExprConstant.cpp | [all...] |
/external/javassist/src/test/test/javassist/convert/ |
ArrayAccessReplaceTest.java | 29 CtClass clazz = pool.get(ArrayAccessReplaceTest.class.getName() + "$Complex"); 390 public static class Complex implements ComplexInterface {
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/ |
X.h | 556 #define Complex 0 /* paths may intersect */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
X.h | 556 #define Complex 0 /* paths may intersect */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
X.h | 556 #define Complex 0 /* paths may intersect */
|
/packages/apps/Calculator/ |
arity-2.1.2.jar | |