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

1234

/haiku/headers/posix/
H A Dcomplex.h15 #define complex _Complex macro
22 extern double cabs(double complex);
23 extern float cabsf(float complex);
24 extern long double cabsl(long double complex);
25 extern double complex cacos(double complex);
26 extern float complex cacosf(float complex);
27 extern double complex cacosh(double complex);
[all...]
/haiku/headers/cpp/
H A Dcomplex.h5 #include <complex>
/haiku/headers/cpp/std/
H A Dldcomplex.h36 class complex<long double> class
39 complex (long double r = 0, long double i = 0): re (r), im (i) { } function in class:complex
40 complex (const complex<float>& r): re (r.real ()), im (r.imag ()) { } function in class:complex
41 complex (const complex<double>& r): re (r.real ()), im (r.imag ()) { } function in class:complex
43 complex& operator+= (const complex& r) { return __doapl (this, r); }
44 complex& operator-= (const complex
86 inline complex<float>::complex (const complex<long double>& r) function in class:complex
90 inline complex<double>::complex (const complex<long double>& r) function in class:complex
[all...]
H A Ddcomplex.h36 class complex<double> class
39 complex (double r = 0, double i = 0): re (r), im (i) { } function in class:complex
40 complex (const complex<float>& r): re (r.real ()), im (r.imag ()) { } function in class:complex
41 explicit complex (const complex<long double>& r);
43 complex& operator+= (const complex& r) { return __doapl (this, r); }
44 complex& operator-= (const complex
86 inline complex<float>::complex (const complex<double>& r) function in class:complex
[all...]
H A Dfcomplex.h36 class complex<float> class
39 complex (float r = 0, float i = 0): re (r), im (i) { } function in class:complex
40 explicit complex (const complex<double>& r);
41 explicit complex (const complex<long double>& r);
43 complex& operator+= (const complex& r) { return __doapl (this, r); }
44 complex& operator-= (const complex
[all...]
H A Dcomplext.h1 // The template and inlines for the -*- C++ -*- complex number classes.
44 template <class _FLT> class complex;
45 template <class _FLT> complex<_FLT>&
46 __doapl (complex<_FLT>* ths, const complex<_FLT>& r);
47 template <class _FLT> complex<_FLT>&
48 __doami (complex<_FLT>* ths, const complex<_FLT>& r);
49 template <class _FLT> complex<_FLT>&
50 __doaml (complex<_FL
55 class complex class
58 complex (_FLT r = 0, _FLT i = 0): re (r), im (i) { } function in class:complex
[all...]
H A Dcomplext.cc1 // Member templates for the -*- C++ -*- complex number classes.
28 #include <complex>
31 template <class FLOAT> complex<FLOAT>
32 cos (const complex<FLOAT>& x)
34 return complex<FLOAT> (cos (real (x)) * cosh (imag (x)),
38 template <class FLOAT> complex<FLOAT>
39 cosh (const complex<FLOAT>& x)
41 return complex<FLOAT> (cosh (real (x)) * cos (imag (x)),
45 template <class FLOAT> complex<FLOAT>
46 exp (const complex<FLOA
[all...]
/haiku/src/system/libroot/posix/glibc/math/
H A Dconjf.c1 /* Return complex conjugate of complex float value.
20 #include <complex.h>
H A Dconjl.c1 /* Return complex conjugate of complex long double value.
20 #include <complex.h>
H A Dcimagf.c1 /* Return imaginary part of complex float value.
20 #include <complex.h>
H A Dcimagl.c1 /* Return imaginary part of complex long double value.
20 #include <complex.h>
H A Dcrealf.c1 /* Return real part of complex float value.
20 #include <complex.h>
H A Dcreall.c1 /* Return real part of complex long double value.
20 #include <complex.h>
H A Dcabsl.c1 /* Return the complex absolute value of long double complex value.
20 #include <complex.h>
H A Dcabsf.c1 /* Return the complex absolute value of float complex value.
20 #include <complex.h>
H A Dcimag.c1 /* Return imaginary part of complex double value.
20 #include <complex.h>
H A Dconj.c1 /* Return complex conjugate of complex double value.
20 #include <complex.h>
H A Dcreal.c1 /* Return real part of complex double value.
20 #include <complex.h>
H A Dcargl.c1 /* Compute argument of complex long double value.
20 #include <complex.h>
H A Dcargf.c1 /* Compute argument of complex float value.
20 #include <complex.h>
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_cpowf.c21 #include <complex.h>
H A Ds_cpowl.c21 #include <complex.h>
H A Ds_cacosf.c1 /* Return cosine of complex float value.
21 #include <complex.h>
H A Ds_cacosl.c1 /* Return cosine of complex long double value.
21 #include <complex.h>
H A Ds_cpow.c21 #include <complex.h>

Completed in 111 milliseconds

1234