Searched full:complex (Results 1 – 25 of 1448) sorted by relevance
12345678910>>...58
2 //===--------------------------- complex ----------------------------------===//15 complex synopsis21 class complex26 complex(const T& re = T(), const T& im = T()); // constexpr in C++1427 complex(const complex&); // constexpr in C++1428 template<class X> complex(const complex<X>&); // constexpr in C++1436 complex<T>& operator= (const T&);37 complex<T>& operator+=(const T&);38 complex<T>& operator-=(const T&);39 complex<T>& operator*=(const T&);[all …]
1 // The template and inlines for the -*- C++ -*- complex number classes.25 /** @file include/complex30 // ISO C++ 14882: 26.2 Complex Numbers47 // Get rid of a macro possibly defined in <complex.h>48 #undef complex59 * @defgroup complex_numbers Complex Numbers62 * Classes and functions for complex numbers.67 template<typename _Tp> class complex;68 template<> class complex<float>;69 template<> class complex<double>;[all …]
25 /** @file complex.h36 // For strict modes do not include the C library's <complex.h>, see PR 82417.38 # include_next <complex.h>41 # undef complex
1 // TR1 complex -*- C++ -*-25 /** @file tr1/complex34 #include <complex>55 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);56 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);57 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);58 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&);59 template<typename _Tp> std::complex<_Tp> asinh(const std::complex<_Tp>&);60 template<typename _Tp> std::complex<_Tp> atanh(const std::complex<_Tp>&);64 template<typename _Tp> std::complex<_Tp> fabs(const std::complex<_Tp>&);[all …]
... libffi-3.4.2/testsuite/libffi.complex/ libffi-3.4.2/testsuite/libffi ...
4 Each PCI device under a root complex is uniquely identified by its Requester ID26 PCI root complex52 - msi-parent: Describes the MSI parent of the root complex itself. Where53 the root complex and MSI controller do not pass sideband data with MSI55 used by PCI devices under the root complex, if defined as such in the56 binding for the root complex.75 compatible = "vendor,pcie-root-complex";103 compatible = "vendor,pcie-root-complex";132 compatible = "vendor,pcie-root-complex";162 compatible = "vendor,pcie-root-complex";[all …]
4 Each PCI(e) device under a root complex is uniquely identified by its Requester18 root complex may split masters across a set of IOMMUs (e.g. with one IOMMU per29 PCI root complex63 compatible = "vendor,pcie-root-complex";90 compatible = "vendor,pcie-root-complex";118 compatible = "vendor,pcie-root-complex";158 compatible = "vendor,pcie-root-complex";
66 //////////////////////////////// Complex //////////////////////////////68 /** @brief A complex number class.70 The template class is similar and compatible with std::complex, however it provides slightly72 to std::complex::real() and std::complex::imag().74 template<typename _Tp> class Complex class79 Complex();80 Complex( _Tp _re, _Tp _im = 0 );83 template<typename T2> operator Complex<T2>() const;85 Complex conj() const;90 typedef Complex<float> Complexf;[all …]
18 /* Pin Complex (NID 0x11) */23 /* Pin Complex (NID 0x12) */28 /* Pin Complex (NID 0x14) */33 /* Pin Complex (NID 0x15) */38 /* Pin Complex (NID 0x16) */43 /* Pin Complex (NID 0x18) */48 /* Pin Complex (NID 0x19) */53 /* Pin Complex (NID 0x1A) */58 /* Pin Complex */63 /* Pin Complex */[all …]
256 * I: (libc)Complex Numbers.455 * _Complex_I: (libc)Complex Numbers.460 * _Imaginary_I: (libc)Complex Numbers.633 * carg: (libc)Operations on Complex.634 * cargf: (libc)Operations on Complex.635 * cargfN: (libc)Operations on Complex.636 * cargfNx: (libc)Operations on Complex.637 * cargl: (libc)Operations on Complex.695 * cimag: (libc)Operations on Complex.696 * cimagf: (libc)Operations on Complex.[all …]
1 /* Prototype declarations for complex math functions;2 helper file for <complex.h>.20 /* NOTE: Because of the special way this file is used by <complex.h>, this44 #error "Never use <bits/cmathcalls.h> directly; include <complex.h> instead."117 /* Complex conjugate of Z. */124 /* Decomposing complex values. */
8 /* Management Complex General API9 * Contains general API for the Management Complex firmware15 * Management Complex firmware version information35 * mc_get_version() - Retrieves the Management Complex firmware
19 * ISO C99: 7.3 Complex arithmetic <complex.h>38 types `float complex' and `double complex'. */43 #define complex _Complex macro56 /* Macros to expand into expression of specified complex type. */249 #endif /* complex.h */
6 // The aim of this header is just to include <complex> but to do8 // the Boost TR1 components if boost/tr1/tr1/complex is in the21 # include <complex>