/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/ |
version.pass.cpp | 10 // <complex> 12 #include <complex>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
complex.h | 25 /** @file complex.h 35 # include_next <complex.h>
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/ |
complex.h | 1 // TR1 complex.h -*- C++ -*- 25 /** @file tr1/complex.h
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/templates/ |
addNdkSupport.xml | 22 <complex-array name="files">
31 </complex-array>
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_csqrt.c | 30 #include <complex.h> 37 * gcc doesn't implement complex multiplication or division correctly, 48 double complex 49 csqrt(double complex z) 51 double complex result;
|
s_csqrtl.c | 30 #include <complex.h> 37 * gcc doesn't implement complex multiplication or division correctly, 48 long double complex 49 csqrtl(long double complex z) 51 long double complex result;
|
/external/eigen/unsupported/Eigen/ |
FFT | 13 #include <complex> 62 * number of bins in complex vs real. 66 * separate specializations for real vs complex. On the inverse 165 typedef typename impl_type::Complex Complex; 187 void fwd( Complex * dst, const Scalar * src, Index nfft) 195 void fwd( Complex * dst, const Complex * src, Index nfft) 202 void fwd2(Complex * dst, const Complex * src, int n0,int n1 [all...] |
/external/eigen/unsupported/doc/examples/ |
PolynomialSolver1.cpp | 18 cout << "Complex roots: " << psolve.roots().transpose() << endl; 33 cout << "Complex roots: " << psolvef.roots().transpose() << endl; 41 cout << "Complex roots: " << psolve6d.roots().transpose() << endl; 44 std::complex<float> castedRoot( psolve6d.roots()[i].real(), psolve6d.roots()[i].imag() ); 51 std::complex<float> castedRoot( psolve6d.roots()[5].real(), psolve6d.roots()[5].imag() );
|
/ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.transcendentals/ |
acos.pass.cpp | 10 // <complex> 13 // complex<T> 14 // acos(const complex<T>& x); 16 #include <complex> 23 test(const std::complex<T>& c, std::complex<T> x) 32 test(std::complex<T>(INFINITY, 1), std::complex<T>(0, -INFINITY)); 37 typedef std::complex<double> C; 42 std::complex<double> r = acos(x[i]) [all...] |