Home
last modified time | relevance | path

Searched refs:complex (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/freebsd/include/
H A Dcomplex.h66 double complex cacos(double complex);
67 float complex cacosf(float complex);
78 float complex casinf(float complex);
86 float complex catanf(float complex);
93 double complex ccos(double complex);
94 float complex ccosf(float complex);
98 float complex cexpf(float complex);
105 float complex clogf(float complex);
112 float complex cpowf(float complex, float complex);
113 double complex cpow(double complex, double complex);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcomplex20 class complex
26 complex(const complex&); // constexpr in C++14
56 explicit constexpr complex(const complex<double>&);
85 constexpr complex(const complex<float>&);
114 constexpr complex(const complex<float>&);
115 constexpr complex(const complex<double>&);
221 template<class T> complex<T> pow(const complex<T>&, const complex<T>&);
560 inline _LIBCPP_CONSTEXPR complex<float>::complex(const complex<long double>& __c)
565 inline _LIBCPP_CONSTEXPR complex<double>::complex(const complex<long double>& __c)
568 inline _LIBCPP_CONSTEXPR complex<long double>::complex(const complex<float>& __c)
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h121 __DEVICE__ std::complex<_Tp> sqrt(const std::complex<_Tp> &__x) { in sqrt()
138 __DEVICE__ std::complex<_Tp> exp(const std::complex<_Tp> &__x) { in exp()
158 std::complex<_Tp> pow(const std::complex<_Tp> &__x, in pow()
174 __DEVICE__ std::complex<_Tp> asinh(const std::complex<_Tp> &__x) { in asinh()
202 __DEVICE__ std::complex<_Tp> acosh(const std::complex<_Tp> &__x) { in acosh()
235 __DEVICE__ std::complex<_Tp> atanh(const std::complex<_Tp> &__x) { in atanh()
265 __DEVICE__ std::complex<_Tp> sinh(const std::complex<_Tp> &__x) { in sinh()
279 __DEVICE__ std::complex<_Tp> cosh(const std::complex<_Tp> &__x) { in cosh()
295 __DEVICE__ std::complex<_Tp> tanh(const std::complex<_Tp> &__x) { in tanh()
367 __DEVICE__ std::complex<_Tp> sin(const std::complex<_Tp> &__x) { in sin()
[all …]
H A Dcomplex1 /*===-- complex --- OpenMP complex wrapper for target regions --------- c++ -===
17 // We require std::math functions in the complex builtins below.
35 #include_next <complex>
38 // after including <cmath> above. Since the complex header we use is a
41 // the (hopefully template) functions in the <complex> header with the ones we
43 // arithmetic and calls to non-complex functions, all of which we can then
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c63 float complex (FNC ## f)(float complex x) { n_float_complex++; }\
64 double complex (FNC)(double complex x) { n_double_complex++; } \
65 long double complex \
91 float complex (cpowf)(float complex x, float complex y) { n_float_complex++; } in TGMACRO()
92 double complex in complex() function
93 (cpow)(double complex x, double complex y) { n_double_complex++; } in complex()
94 long double complex in complex() function
95 (cpowl)(long double complex x, long double complex y) in complex()
167 long double complex ldc;
168 double complex dc;
[all …]
/freebsd/lib/msun/tests/
H A Dconj_test.c42 static float complex (*libconjf)(float complex) = conjf;
43 static double complex (*libconj)(double complex) = conj;
44 static long double complex (*libconjl)(long double complex) = conjl;
45 static float (*libcrealf)(float complex) = crealf;
46 static double (*libcreal)(double complex) = creal;
47 static long double (*libcreall)(long double complex) = creall;
48 static float (*libcimagf)(float complex) = cimagf;
49 static double (*libcimag)(double complex) = cimag;
50 static long double (*libcimagl)(long double complex) = cimagl;
74 complex float in; in ATF_TC_BODY()
[all …]
H A Dcsqrt_test.c45 static long double complex (*t_csqrt)(long double complex);
47 static long double complex
48 _csqrtf(long double complex d) in _csqrtf()
51 return (csqrtf((float complex)d)); in _csqrtf()
54 static long double complex
55 _csqrt(long double complex d) in _csqrt()
58 return (csqrt((double complex)d)); in _csqrt()
215 long double complex result; in test_overflow()
256 long double complex result; in test_precision()
H A Dtest-utils.h81 static inline long double complex
84 long double complex z; in CMPLXL()
97 static int cfpequal(long double complex, long double complex) __used;
166 cfpequal(long double complex d1, long double complex d2) in cfpequal()
/freebsd/lib/msun/src/
H A Dcatrig.c62 static double complex clog_for_large_values(double complex z);
273 double complex
278 double complex w; in casinh()
334 double complex
354 double complex
360 double complex w; in cacos()
428 double complex
431 double complex w; in cacosh()
453 static double complex
570 double complex
[all …]
H A Dcatrigf.c74 static float complex clog_for_large_values(float complex z);
144 float complex
149 float complex w; in casinhf()
191 float complex
199 float complex
205 float complex w; in cacosf()
258 float complex
261 float complex w; in cacoshf()
276 static float complex
337 float complex
[all …]
H A Dcatrigl.c93 static long double complex clog_for_large_values(long double complex z);
163 long double complex
168 long double complex w; in casinhl()
210 long double complex
213 long double complex w; in casinl()
219 long double complex
225 long double complex w; in cacosl()
278 long double complex
281 long double complex w; in cacoshl()
358 long double complex
[all …]
H A Ds_cpow.c51 double complex
52 cpow(double complex a, double complex z) in cpow()
54 double complex w; in cpow()
H A Ds_cpowf.c50 float complex
51 cpowf(float complex a, float complex z) in cpowf()
53 float complex w; in cpowf()
H A Ds_cpowl.c50 long double complex
51 cpowl(long double complex a, long double complex z) in cpowl()
53 long double complex w; in cpowl()
H A Ds_ctanh.c73 double complex
74 ctanh(double complex z) in ctanh()
139 double complex
140 ctan(double complex z) in ctan()
H A Ds_ctanhf.c38 float complex
39 ctanhf(float complex z) in ctanhf()
77 float complex
78 ctanf(float complex z) in ctanf()
H A Ds_csinhf.c40 float complex
41 csinhf(float complex z) in csinhf()
96 float complex
97 csinf(float complex z) in csinf()
H A Ds_ccoshf.c40 float complex
41 ccoshf(float complex z) in ccoshf()
96 float complex
97 ccosf(float complex z) in ccosf()
H A Ds_csinh.c48 double complex
49 csinh(double complex z) in csinh()
149 double complex
150 csin(double complex z) in csin()
H A Ds_ccosh.c48 double complex
49 ccosh(double complex z) in ccosh()
150 double complex
151 ccos(double complex z) in ccos()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcomplex.inc12 // [complex], class template complex
13 using std::complex;
15 // [complex.ops], operators
27 // [complex.value.ops], values
39 // [complex.transcendentals], transcendentals
62 // [complex.literals], complex literals
/freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcomplex1 /*===---- complex - CUDA wrapper for <complex> ------------------------------===
27 // Wrapper around <complex> that forces its functions to be __host__
31 // <complex>, so that the pragma below only applies to <complex> itself.
46 // complex functions, rather than calling builtins (which resolve to library
53 // __host__ __device__ void complex<float> sin(const complex<float>& x) {
59 // void __host__ __device__ complex<T> sin(const complex<T>& x) {
60 // return complex<T>(sin(x.real()) * cosh(x.imag()),
82 #include_next <complex>
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DCSymbolMap.inc29 SYMBOL(CMPLX, None, <complex.h>)
30 SYMBOL(CMPLXF, None, <complex.h>)
31 SYMBOL(CMPLXL, None, <complex.h>)
88 SYMBOL(I, None, <complex.h>)
318 SYMBOL(cabs, None, <complex.h>)
329 SYMBOL(carg, None, <complex.h>)
347 SYMBOL(ccos, None, <complex.h>)
356 SYMBOL(cexp, None, <complex.h>)
367 SYMBOL(clog, None, <complex.h>)
378 SYMBOL(complex, None, <complex.h>)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dpci-msi.txt4 Each PCI device under a root complex is uniquely identified by its Requester ID
26 PCI root complex
52 - msi-parent: Describes the MSI parent of the root complex itself. Where
53 the root complex and MSI controller do not pass sideband data with MSI
55 used by PCI devices under the root complex, if defined as such in the
56 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 …]
/freebsd/contrib/netbsd-tests/lib/libm/
H A Dt_cabsl.cxx47 std::complex<long double> cld(3.0,4.0); in ATF_TEST_CASE_BODY()
50 std::complex<double> cd(3.0,4.0); in ATF_TEST_CASE_BODY()
53 std::complex<float> cf(3.0,4.0); in ATF_TEST_CASE_BODY()

12345678910>>...15