Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd-12.1/include/
H A Dcomplex.h68 double complex cacos(double complex);
69 float complex cacosf(float complex);
80 float complex casinf(float complex);
88 float complex catanf(float complex);
95 double complex ccos(double complex);
96 float complex ccosf(float complex);
100 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-12.1/contrib/libstdc++/include/std/
H A Dstd_complex.h128 complex(const complex<_Up>&);
200 complex<_Tp>::complex(const complex<_Up>& __z) in complex() function
1165 complex(const complex<float>&);
1318 complex(const complex<float>&);
1319 complex(const complex<double>&);
1464 complex<float>::complex(const complex<double>& __z)
1468 complex<float>::complex(const complex<long double>& __z)
1472 complex<double>::complex(const complex<float>& __z)
1476 complex<double>::complex(const complex<long double>& __z)
1480 complex<long double>::complex(const complex<float>& __z)
[all …]
/freebsd-12.1/contrib/libc++/include/
H A Dcomplex42 complex& operator=(const complex&);
138 template<class T> complex<T> operator+(const complex<T>&, const complex<T>&);
141 template<class T> complex<T> operator-(const complex<T>&, const complex<T>&);
222 template<class T> complex<T> pow(const complex<T>&, const complex<T>&);
274 complex(const complex<_Xp>& __c)
499 complex<float>::complex(const complex<double>& __c)
504 complex<float>::complex(const complex<long double>& __c)
509 complex<double>::complex(const complex<float>& __c)
514 complex<double>::complex(const complex<long double>& __c)
519 complex<long double>::complex(const complex<float>& __c)
[all …]
/freebsd-12.1/contrib/libstdc++/include/tr1/
H A Dcomplex1 // TR1 complex -*- C++ -*-
30 /** @file tr1/complex
37 #include "../complex"
46 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
47 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
48 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
50 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&);
51 template<typename _Tp> std::complex<_Tp> asinh(const std::complex<_Tp>&);
53 template<typename _Tp> std::complex<_Tp> fabs(const std::complex<_Tp>&);
321 struct __promote_2<std::complex<_Tp>, std::complex<_Up> >
[all …]
/freebsd-12.1/tools/regression/include/tgmath/
H A Dtgmath.c65 float complex (FNC ## f)(float complex x) { n_float_complex++; }\
66 double complex (FNC)(double complex x) { n_double_complex++; } \
67 long double complex \
93 float complex (cpowf)(float complex x, float complex y) { n_float_complex++; } in TGMACRO()
94 double complex in complex() function
95 (cpow)(double complex x, double complex y) { n_double_complex++; } in complex()
96 long double complex in complex() function
97 (cpowl)(long double complex x, long double complex y) in complex()
169 long double complex ldc;
170 double complex dc;
[all …]
/freebsd-12.1/contrib/libstdc++/src/
H A Dcomplex_io.cc36 operator>>(basic_istream<char, char_traits<char> >&, complex<float>&);
41 const complex<float>&);
50 const complex<double>&);
55 complex<long double>&);
60 const complex<long double>&);
66 complex<float>&);
71 const complex<float>&);
76 complex<double>&);
81 const complex<double>&);
86 complex<long double>&);
[all …]
/freebsd-12.1/lib/msun/tests/
H A Dtest-utils.h80 static inline long double complex
83 long double complex z; in CMPLXL()
92 static int cfpequal(long double complex, long double complex) __used;
93 static int cfpequal_cs(long double complex, long double complex,
95 static int cfpequal_tol(long double complex, long double complex,
160 cfpequal(long double complex d1, long double complex d2) in cfpequal()
168 cfpequal_cs(long double complex x, long double complex y, int checksign) in cfpequal_cs()
175 cfpequal_tol(long double complex x, long double complex y, long double tol, in cfpequal_tol()
H A Dconj_test.c45 static float complex (*libconjf)(float complex) = conjf;
46 static double complex (*libconj)(double complex) = conj;
47 static long double complex (*libconjl)(long double complex) = conjl;
48 static float (*libcrealf)(float complex) = crealf;
49 static double (*libcreal)(double complex) = creal;
50 static long double (*libcreall)(long double complex) = creall;
51 static float (*libcimagf)(float complex) = cimagf;
52 static double (*libcimag)(double complex) = cimag;
53 static long double (*libcimagl)(long double complex) = cimagl;
77 complex float in; in main()
[all …]
H A Dcsqrt_test.c49 static long double complex (*t_csqrt)(long double complex);
51 static long double complex
52 _csqrtf(long double complex d) in _csqrtf()
55 return (csqrtf((float complex)d)); in _csqrtf()
58 static long double complex
59 _csqrt(long double complex d) in _csqrt()
62 return (csqrt((double complex)d)); in _csqrt()
72 assert_equal(long double complex d1, long double complex d2) in assert_equal()
224 long double complex result; in test_overflow()
265 long double complex result; in test_precision()
H A Dinvctrig_test.c61 volatile long double complex _d = z; \
74 volatile long double complex _d = z; \
130 long double complex zero = CMPLXL(0.0, 0.0); in test_zero()
150 long double complex nan_nan = CMPLXL(NAN, NAN); in test_nan()
151 long double complex z; in test_nan()
229 long double complex z; in test_inf()
279 long double complex z; in test_axes()
319 complex long double z; in test_small()
320 complex long double acos_z; in test_small()
321 complex long double asin_z; in test_small()
[all …]
/freebsd-12.1/lib/msun/src/
H A Dcatrigl.c96 static long double complex clog_for_large_values(long double complex z);
166 long double complex
171 long double complex w; in casinhl()
213 long double complex
216 long double complex w; in casinl()
222 long double complex
228 long double complex w; in cacosl()
281 long double complex
284 long double complex w; in cacoshl()
361 long double complex
[all …]
H A Dcatrig.c65 static double complex clog_for_large_values(double complex z);
276 double complex
281 double complex w; in casinh()
337 double complex
357 double complex
363 double complex w; in cacos()
431 double complex
434 double complex w; in cacosh()
456 static double complex
573 double complex
[all …]
H A Dcatrigf.c77 static float complex clog_for_large_values(float complex z);
147 float complex
152 float complex w; in casinhf()
194 float complex
202 float complex
208 float complex w; in cacosf()
261 float complex
264 float complex w; in cacoshf()
279 static float complex
340 float complex
[all …]
H A Ds_cpowl.c53 long double complex
54 cpowl(long double complex a, long double complex z) in cpowl()
56 long double complex w; in cpowl()
H A Ds_cpow.c54 double complex
55 cpow(double complex a, double complex z) in cpow()
57 double complex w; in cpow()
H A Ds_cpowf.c53 float complex
54 cpowf(float complex a, float complex z) in cpowf()
56 float complex w; in cpowf()
H A Ds_ctanhf.c41 float complex
42 ctanhf(float complex z) in ctanhf()
80 float complex
81 ctanf(float complex z) in ctanf()
H A Ds_ctanh.c76 double complex
77 ctanh(double complex z) in ctanh()
140 double complex
141 ctan(double complex z) in ctan()
H A Ds_csinhf.c43 float complex
44 csinhf(float complex z) in csinhf()
99 float complex
100 csinf(float complex z) in csinf()
H A Ds_ccoshf.c43 float complex
44 ccoshf(float complex z) in ccoshf()
99 float complex
100 ccosf(float complex z) in ccosf()
H A Ds_csinh.c51 double complex
52 csinh(double complex z) in csinh()
152 double complex
153 csin(double complex z) in csin()
H A Ds_ccosh.c51 double complex
52 ccosh(double complex z) in ccosh()
153 double complex
154 ccos(double complex z) in ccos()
/freebsd-12.1/contrib/llvm/tools/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()),
75 #include_next <complex>
/freebsd-12.1/contrib/libstdc++/include/backward/
H A Dcomplex.h34 using std::complex;
35 typedef complex<float> float_complex;
36 typedef complex<double> double_complex;
37 typedef complex<long double> long_double_complex;
/freebsd-12.1/contrib/file/magic/Magdir/
H A Dti-8x28 >0x00003B byte 0x0C (complex number)
81 >0x00003B byte 0x0C (complex number)
94 >0x00003B byte 0x01 (complex number)
96 >0x00003B byte 0x03 (complex vector)
98 >0x00003B byte 0x05 (complex list)
100 >0x00003B byte 0x07 (complex matrix)
102 >0x00003B byte 0x09 (complex constant)
127 >0x00003B byte 0x01 (complex number)
129 >0x00003B byte 0x03 (complex vector)
131 >0x00003B byte 0x05 (complex list)
[all …]

12345678910>>...13