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

123

/freebsd-13-stable/include/
H A Dcomplex.h48 #define complex _Complex macro
53 #define CMPLX(x, y) ((double complex){ x, y })
54 #define CMPLXF(x, y) ((float complex){ x, y })
55 #define CMPLXL(x, y) ((long double complex){ x, y })
65 double cabs(double complex);
66 float cabsf(float complex);
67 long double cabsl(long double complex);
68 double complex cacos(double complex);
69 float complex cacos
[all...]
/freebsd-13-stable/lib/msun/src/
H A Ds_creal.c31 #include <complex.h>
34 creal(double complex z)
H A Ds_crealf.c31 #include <complex.h>
34 crealf(float complex z)
H A Ds_creall.c31 #include <complex.h>
34 creall(long double complex z)
H A Ds_conj.c31 #include <complex.h>
35 double complex
36 conj(double complex z)
H A Ds_conjf.c31 #include <complex.h>
35 float complex
36 conjf(float complex z)
H A Ds_conjl.c31 #include <complex.h>
35 long double complex
36 conjl(long double complex z)
H A Ds_cimag.c31 #include <complex.h>
35 cimag(double complex z)
H A Ds_cimagf.c31 #include <complex.h>
35 cimagf(float complex z)
H A Ds_cimagl.c31 #include <complex.h>
35 cimagl(long double complex z)
H A Ds_carg.c32 #include <complex.h>
36 carg(double complex z)
H A Ds_cargf.c32 #include <complex.h>
36 cargf(float complex z)
H A Ds_cargl.c32 #include <complex.h>
36 cargl(long double complex z)
H A Dw_cabsf.c13 #include <complex.h>
19 float complex z;
H A Dw_cabsl.c13 #include <complex.h>
17 cabsl(long double complex z)
H A Ds_cproj.c32 #include <complex.h>
38 double complex
39 cproj(double complex z)
H A Ds_cprojf.c32 #include <complex.h>
37 float complex
38 cprojf(float complex z)
H A Ds_cprojl.c32 #include <complex.h>
37 long double complex
38 cprojl(long double complex z)
H A Dw_cabs.c11 #include <complex.h>
16 cabs(double complex z)
H A Ds_cpow.c25 * double complex cpow();
26 * double complex a, z, w;
34 * Raises complex A to the complex Zth power.
49 #include <complex.h>
54 double complex
55 cpow(double complex a, double complex z)
57 double complex w;
H A Ds_cpowf.c25 * float complex cpowf();
26 * float complex a, z, w;
34 * Raises complex A to the complex Zth power.
49 #include <complex.h>
53 float complex
54 cpowf(float complex a, float complex z)
56 float complex w;
H A Ds_cpowl.c25 * long double complex cpowl();
26 * long double complex a, z, w;
34 * Raises complex A to the complex Zth power.
49 #include <complex.h>
53 long double complex
54 cpowl(long double complex a, long double complex z)
56 long double complex w;
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dcomplex.h2 //===--------------------------- complex.h --------------------------------===//
14 complex.h synopsis
32 #include_next <complex.h>
/freebsd-13-stable/contrib/netbsd-tests/lib/libm/
H A Dt_cabsl.cxx35 #include <complex>
47 std::complex<long double> cld(3.0,4.0);
50 std::complex<double> cd(3.0,4.0);
53 std::complex<float> cf(3.0,4.0);
/freebsd-13-stable/lib/msun/tests/
H A Dconj_test.c34 #include <complex.h>
44 static float complex (*libconjf)(float complex) = conjf;
45 static double complex (*libconj)(double complex) = conj;
46 static long double complex (*libconjl)(long double complex) = conjl;
47 static float (*libcrealf)(float complex) = crealf;
48 static double (*libcreal)(double complex) = creal;
49 static long double (*libcreall)(long double complex)
[all...]

Completed in 58 milliseconds

123