Searched refs:complex (Results 1 - 25 of 129) sorted by relevance

123456

/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/backward/
H A Dcomplex.h32 #include <complex>
34 using std::complex;
35 typedef complex<float> float_complex;
36 typedef complex<double> double_complex;
37 typedef complex<long double> long_double_complex;
/macosx-10.9.5/swig-10/Lib/octave/
H A Dstd_complex.i2 * STD C++ complex typemaps
8 #include <complex>
11 /* defining the complex as/from converters */
13 %swig_cplxdbl_convn(std::complex<double>, std::complex<double>, std::real, std::imag)
14 %swig_cplxflt_convn(std::complex<float>, std::complex<float>, std::real, std::imag)
18 %typemaps_primitive(%checkcode(CPLXDBL), std::complex<double>);
19 %typemaps_primitive(%checkcode(CPLXFLT), std::complex<float>);
/macosx-10.9.5/swig-10/Lib/python/
H A Dccomplex.i7 * C complex typemaps
8 * ISO C99: 7.3 Complex arithmetic <complex.h>
15 #include <complex.h>
19 /* C complex constructor */
22 %swig_cplxflt_convn(float complex, CCplxConst, creal, cimag);
23 %swig_cplxdbl_convn(double complex, CCplxConst, creal, cimag);
24 %swig_cplxdbl_convn(complex, CCplxConst, creal, cimag);
27 %typemaps_primitive(SWIG_TYPECHECK_CPLXFLT, float complex);
28 %typemaps_primitive(SWIG_TYPECHECK_CPLXDBL, double complex);
29 %typemaps_primitive(SWIG_TYPECHECK_CPLXDBL, complex);
[all...]
H A Dstd_complex.i2 * STD C++ complex typemaps
8 #include <complex>
11 /* defining the complex as/from converters */
13 %swig_cplxdbl_convn(std::complex<double>, std::complex<double>, std::real, std::imag)
14 %swig_cplxflt_convn(std::complex<float>, std::complex<float>, std::real, std::imag)
18 %typemaps_primitive(%checkcode(CPLXDBL), std::complex<double>);
19 %typemaps_primitive(%checkcode(CPLXFLT), std::complex<float>);
H A DREADME13 ccomplex.i C99 complex type
14 complex.i C99 or C++ complex type
30 std_complex.i complex
87 pycomplex.swg PyComplex and helper for C/C++ complex types
H A Dpythonkw.swg59 PYTHONBN(complex);
/macosx-10.9.5/swig-10/Lib/ruby/
H A Dstd_complex.i2 * STD C++ complex typemaps
8 #include <complex>
11 /* defining the complex as/from converters */
13 %swig_cplxdbl_convn(std::complex<double>, std::complex<double>, std::real, std::imag)
14 %swig_cplxflt_convn(std::complex<float>, std::complex<float>, std::real, std::imag)
18 %typemaps_primitive(%checkcode(CPLXDBL), std::complex<double>);
19 %typemaps_primitive(%checkcode(CPLXFLT), std::complex<float>);
H A Drubycontainer_extended.swg128 %swig_container_extend( %arg( Container ), std::complex );
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Dstd_complex.i8 #include <complex>
13 template <class T> class complex;
17 %typemap(in) complex<T> {
19 $1 = std::complex<T>(PyComplex_RealAsDouble($input),
22 $1 = std::complex<T>(PyFloat_AsDouble($input), 0);
24 $1 = std::complex<T>(PyInt_AsLong($input), 0);
27 PyErr_SetString(PyExc_TypeError,"Expected a complex");
32 %typemap(in) const complex<T>& (std::complex<T> temp) {
34 temp = std::complex<
[all...]
/macosx-10.9.5/swig-10/Lib/guile/
H A Dcplusplus.i17 %typemap(guile,out) complex, complex<double>, std::complex<double> {
21 %typemap(guile,in) complex, complex<double>, std::complex<double> {
22 $1 = std::complex<double>( gh_scm2double (scm_real_part ($input)),
/macosx-10.9.5/libstdcxx-60/src/
H A Dcomplex_io.cc1 // The template and inlines for the -*- C++ -*- complex number classes.
30 #include <complex>
36 operator>>(basic_istream<char, char_traits<char> >&, complex<float>&);
41 const complex<float>&);
45 operator>>(basic_istream<char, char_traits<char> >&, complex<double>&);
50 const complex<double>&);
55 complex<long double>&);
60 const complex<long double>&);
66 complex<float>&);
71 const complex<floa
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/i386/pid/
H A Dtst.retlist.s36 ENTRY(complex) function
44 SET_SIZE(complex)
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DBiquad.h33 #include <complex>
67 void setZeroPolePairs(std::complex<double> zero, std::complex<double> pole);
71 void setAllpassPole(std::complex<double>);
H A DFFTFrame.cpp36 #include <complex>
102 std::complex<double> c1(realP1[i], imagP1[i]);
103 std::complex<double> c2(realP2[i], imagP2[i]);
169 std::complex<double> c = std::polar(mag, phaseAccum);
191 std::complex<double> c(realP[i], imagP[i]);
238 std::complex<double> c(realP[i], imagP[i]);
244 std::complex<double> c2 = std::polar(mag, phase);
H A DBiquad.cpp41 // Work around a bug where VForce.h forward declares std::complex in a way that's incompatible with libc++ complex.
527 void Biquad::setZeroPolePairs(std::complex<double> zero, std::complex<double> pole)
542 void Biquad::setAllpassPole(std::complex<double> pole)
544 std::complex<double> zero = std::complex<double>(1, 0) / pole;
578 std::complex<double> z = std::complex<double>(cos(omega), sin(omega));
579 std::complex<doubl
[all...]
/macosx-10.9.5/swig-10/Lib/std/
H A DREADME9 std_complex.i complex
/macosx-10.9.5/zsh-60/zsh/Src/
H A Dparse.c205 * just parsed is `complex', i.e. may need to be run by forking or
564 set_list_code(int p, int type, int complex) argument
566 if (!complex && (type == Z_SYNC || type == (Z_SYNC | Z_END)) &&
581 set_sublist_code(int p, int type, int flags, int skip, int complex) argument
583 if (complex)
597 par_list(int *complex) argument
610 *complex |= c;
613 *complex = 1;
638 par_list1(int *complex) argument
644 *complex |
658 par_sublist(int *complex) argument
697 par_sublist2(int *complex) argument
722 par_pline(int *complex) argument
784 par_cmd(int *complex) argument
912 par_for(int *complex) argument
1031 par_case(int *complex) argument
1178 par_if(int *complex) argument
1283 par_while(int *complex) argument
1323 par_repeat(int *complex) argument
1370 par_subsh(int *complex) argument
1423 par_funcdef(int *complex) argument
1567 par_simple(int *complex, int nr) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DWebCoreTextRenderer.cpp122 void WebCoreSetAlwaysUsesComplexTextCodePath(bool complex) argument
124 Font::setCodePath(complex ? Font::Complex : Font::Auto);
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dibuf-macs.el171 complex)
235 (inner-body (if complex
/macosx-10.9.5/CPANInternal-140/YAML-Syck/
H A Dbytecode.c465 { int complex = 0; local
468 complex = 1;
472 if ( complex )
489 { int complex = 0; local
492 complex = 1;
496 if ( complex )
/macosx-10.9.5/swig-10/Lib/typemaps/
H A Dprimtypes.swg287 _apply_macro(Macro, std::complex<float>, Arg2);
288 _apply_macro(Macro, std::complex<double>, Arg2);
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DURL.pm34 # complex URL's from a base part and hash of additional parameters.
89 Template::Plugin::URL - Plugin to construct complex URLs
111 The C<URL> plugin can be used to construct complex URLs from a base stem
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DURL.pm34 # complex URL's from a base part and hash of additional parameters.
89 Template::Plugin::URL - Plugin to construct complex URLs
111 The C<URL> plugin can be used to construct complex URLs from a base stem
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DRealtimeAnalyser.cpp36 #include <complex>
90 // m_magnitudeBuffer has size = fftSize / 2 because it contains floats reduced from complex values in m_analysisFrame.
195 // Convert the analysis data from complex to magnitude and average with the previous result.
199 std::complex<double> c(realP[i], imagP[i]);
/macosx-10.9.5/CPANInternal-140/Pod-WSDL/lib/Pod/
H A DWSDL.pm3 # TODO: make array based objects work as own complex types
512 Any subroutine not preceeded by WSDL pod will be left unmentioned. Any standard pod will be ignored (though, for an exception to this, see the section on own complex types below).
576 Quite often it will be the case that you have to use complex types as parameters or return values. One example of this we saw when talking about faults: you might want to create custom fault types (exceptions) of your own to fullfill special needs in the communication between web service and client. But of course you also might simply want to pass a complex parameter like a address object containing customer data to your application. WSDL provides the means to describe complex types borrowing the xsd schema syntax. Pod::WSDL makes use of this by allowing you to add WSDL pod to your own types. Assuming you have some own type like
626 withDocumentation - If true, put available documentation in the WSDL (see "Pod Syntax" above). For used own complex types ('modules') this will be the output of Pod::Text on these modules. The software generating the client stubs might give a damn, but a person reading the WSDL won't!
644 withDocumentation - If true, put available documentation in the WSDL (see "Pod Syntax" above). For used own complex types ('modules') this will be the output of Pod::Text on these modules. The software generating the client stubs might give a damn, but a person reading the WSDL won't!
693 Right know, the pod is found using some rather complex regular expressions. This is evil and will certainly fail in some situations. So, an issue on top of the fixme list is to switch to regular parsing. I'm not sure if I can use Pod::Parser since I need the sub declaration outside the pod, too.
701 Array based blessed references used for complex types are something of a problem.
705 If you use complex type
[all...]

Completed in 269 milliseconds

123456