HomeSort by relevance Sort by last modified time
    Searched full:complex (Results 26 - 50 of 1939) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /ndk/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1/complex
38 #include <complex>
41 # include <tr1_impl/complex>
47 # include <tr1_impl/complex>
65 inline std::complex<typename __gnu_cxx::__promote_2<_Tp, _Up>::__type>
75 inline std::complex<_Tp>
76 pow(const std::complex<_Tp>& __x, const _Tp& __y)
80 inline std::complex<_Tp>
81 pow(const _Tp& __x, const std::complex<_Tp>& __y
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1/complex
38 #include <complex>
41 # include <tr1_impl/complex>
47 # include <tr1_impl/complex>
65 inline std::complex<typename __gnu_cxx::__promote_2<_Tp, _Up>::__type>
75 inline std::complex<_Tp>
76 pow(const std::complex<_Tp>& __x, const _Tp& __y)
80 inline std::complex<_Tp>
81 pow(const _Tp& __x, const std::complex<_Tp>& __y
    [all...]
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1/complex
38 #include <complex>
41 # include <tr1_impl/complex>
47 # include <tr1_impl/complex>
65 inline std::complex<typename __gnu_cxx::__promote_2<_Tp, _Up>::__type>
75 inline std::complex<_Tp>
76 pow(const std::complex<_Tp>& __x, const _Tp& __y)
80 inline std::complex<_Tp>
81 pow(const _Tp& __x, const std::complex<_Tp>& __y
    [all...]
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/tr1/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1/complex
38 #include <complex>
41 # include <tr1_impl/complex>
47 # include <tr1_impl/complex>
65 inline std::complex<typename __gnu_cxx::__promote_2<_Tp, _Up>::__type>
75 inline std::complex<_Tp>
76 pow(const std::complex<_Tp>& __x, const _Tp& __y)
80 inline std::complex<_Tp>
81 pow(const _Tp& __x, const std::complex<_Tp>& __y
    [all...]
  /bionic/libm/man/
cimag.3 34 .Nd "functions to manipulate complex numbers"
38 .In complex.h
40 .Fn cimag "double complex z"
42 .Fn cimagf "float complex z"
44 .Fn cimagl "long double complex z"
45 .Ft "double complex"
46 .Fn conj "double complex z"
47 .Ft "float complex"
48 .Fn conjf "float complex z"
49 .Ft "long double complex"
    [all...]
  /bionic/libm/src/
w_cabs.c 13 #include <complex.h>
18 double complex z;
25 double complex *z;
w_cabsf.c 13 #include <complex.h>
19 float complex z;
  /external/clang/test/SemaCXX/
complex-init-list.cpp 4 // of a complex number individually using an initialization list. Basically,
5 // if you have an explicit init list for a complex number that contains two
10 // test/Sema/complex-init-list.c.
  /external/stlport/src/
complex_io.cpp 21 #include <complex>
30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) {
68 __z = complex<float>(__re, __im);
74 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) {
94 __z = complex<double>(__re, __im);
101 operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) {
121 __z = complex<long double>(__re, __im)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
complex_io.cpp 21 #include <complex>
30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) {
68 __z = complex<float>(__re, __im);
74 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) {
94 __z = complex<double>(__re, __im);
101 operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) {
121 __z = complex<long double>(__re, __im)
    [all...]
  /cts/tools/dex-tools/
TODO.txt 3 Add more complex tests
  /cts/tools/signature-tools/
TODO.txt 3 Add more complex tests
  /external/clang/test/Parser/
parser_overflow.c     [all...]
  /external/clang/test/Sema/
warn-freestanding-complex.c 3 void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding C99 implementation}}
  /external/stlport/etc/
std_headers.txt 3 complex
  /external/speex/libspeex/
kiss_fftr.h 12 Real optimized version can save about 45% cpu time vs. complex fft of a real seq.
32 output freqdata has nfft/2+1 complex points
42 input freqdata has nfft/2+1 complex points
  /external/webkit/Source/JavaScriptCore/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/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 3 template<typename T> struct complex { struct
4 complex(T = T(), T = T());
5 void operator+=(complex);
10 complex<double> z;
  /external/stlport/test/unit/
complex_header_test.cpp 8 #include <complex>
  /external/tinyalsa/
README 7 - Avoid supporting complex and unnecessary operations that could be

Completed in 2663 milliseconds

12 3 4 5 6 7 8 91011>>