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

12 3 4 5 6 7 8 91011>>

  /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;
s_conj.c 29 #include <complex.h>
31 double complex
32 conj(double complex z)
s_conjf.c 29 #include <complex.h>
31 float complex
32 conjf(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}}
complex-init-list.c 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 // a complex number at the moment besides setting the components with
16 // real->complex and complex->real conversions; as-is, it's way too easy
28 _Complex int valid2 = { 1, 2 }; // expected-warning {{complex integer}} expected-warning {{specifying real and imaginary components is an extension}}
  /external/stlport/etc/
std_headers.txt 3 complex
  /frameworks/base/tools/localize/testdata/
pseudo.xliff 15 <trans-unit id="string:complex">
16 <source>First <g id="string:complex:0" ctype="underline">underline</g>, <g id="string:complex:1" ctype="italic">italic<g id="string:complex:2" ctype="bold">italicbold</g></g> End </source>
18 <trans-unit id="string:complex-quoted">
19 <source xml:space="preserve">First <g id="string:complex-quoted:0" ctype="underline">underline</g>, <g id="string:complex-quoted:1" ctype="italic">italic<g id="string:complex-quoted:2" ctype="bold">italicbold</g></g> End</source>
xliff1.xliff 15 <trans-unit id="string:complex">
16 <source>First <g id="string:complex:0" ctype="underline">underline</g>, <g id="string:complex:1" ctype="italic">italic<g id="string:complex:2" ctype="bold">italicbold</g></g> End </source>
19 <trans-unit id="string:complex-quoted">
20 <source xml:space="preserve">First <g id="string:complex-quoted:0" ctype="underline">underline</g>, <g id="string:complex-quoted:1" ctype="italic">italic<g id="string:complex-quoted:2" ctype="bold">italicbold</g></g> End</source>
  /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
fftwrap.h 46 /** Forward (real to half-complex) transform */
49 /** Backward (half-complex to real) transform */
52 /** Forward (real to half-complex) transform of float data */
55 /** Backward (half-complex to real) transform of float data */
  /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/stlport/test/unit/
complex_header_test.cpp 8 #include <complex>
  /external/tinyalsa/
README 7 - Avoid supporting complex and unnecessary operations that could be
  /ndk/tests/device/test-gnustl-full/unit/
complex_header_test.cpp 8 #include <complex>
  /ndk/tests/device/test-stlport/unit/
complex_header_test.cpp 8 #include <complex>
  /external/clang/test/CodeGen/
complex-init-list.c 4 // of a complex number individually using an initialization list. (There is a
5 // extensive description and test in test/Sema/complex-init-list.c.)
  /external/iptables/extensions/
libipt_realm.man 1 This matches the routing realm. Routing realms are used in complex routing

Completed in 3239 milliseconds

12 3 4 5 6 7 8 91011>>