include/complex.h
100
cexpl(long double complex);
include/complex.h
101
double cimag(double complex) __pure2;
include/complex.h
102
float cimagf(float complex) __pure2;
include/complex.h
103
long double cimagl(long double complex) __pure2;
include/complex.h
104
double complex clog(double complex);
include/complex.h
105
float complex clogf(float complex);
include/complex.h
106
long double complex
include/complex.h
107
clogl(long double complex);
include/complex.h
108
double complex conj(double complex) __pure2;
include/complex.h
109
float complex conjf(float complex) __pure2;
include/complex.h
110
long double complex
include/complex.h
111
conjl(long double complex) __pure2;
include/complex.h
112
float complex cpowf(float complex, float complex);
include/complex.h
113
double complex cpow(double complex, double complex);
include/complex.h
114
long double complex
include/complex.h
115
cpowl(long double complex, long double complex);
include/complex.h
116
float complex cprojf(float complex) __pure2;
include/complex.h
117
double complex cproj(double complex) __pure2;
include/complex.h
118
long double complex
include/complex.h
119
cprojl(long double complex) __pure2;
include/complex.h
120
double creal(double complex) __pure2;
include/complex.h
121
float crealf(float complex) __pure2;
include/complex.h
122
long double creall(long double complex) __pure2;
include/complex.h
123
double complex csin(double complex);
include/complex.h
124
float complex csinf(float complex);
include/complex.h
125
double complex csinh(double complex);
include/complex.h
126
float complex csinhf(float complex);
include/complex.h
127
double complex csqrt(double complex);
include/complex.h
128
float complex csqrtf(float complex);
include/complex.h
129
long double complex
include/complex.h
130
csqrtl(long double complex);
include/complex.h
131
double complex ctan(double complex);
include/complex.h
132
float complex ctanf(float complex);
include/complex.h
133
double complex ctanh(double complex);
include/complex.h
134
float complex ctanhf(float complex);
include/complex.h
51
#define CMPLX(x, y) ((double complex){ x, y })
include/complex.h
52
#define CMPLXF(x, y) ((float complex){ x, y })
include/complex.h
53
#define CMPLXL(x, y) ((long double complex){ x, y })
include/complex.h
63
double cabs(double complex);
include/complex.h
64
float cabsf(float complex);
include/complex.h
65
long double cabsl(long double complex);
include/complex.h
66
double complex cacos(double complex);
include/complex.h
67
float complex cacosf(float complex);
include/complex.h
68
double complex cacosh(double complex);
include/complex.h
69
float complex cacoshf(float complex);
include/complex.h
70
long double complex
include/complex.h
71
cacoshl(long double complex);
include/complex.h
72
long double complex
include/complex.h
73
cacosl(long double complex);
include/complex.h
74
double carg(double complex);
include/complex.h
75
float cargf(float complex);
include/complex.h
76
long double cargl(long double complex);
include/complex.h
77
double complex casin(double complex);
include/complex.h
78
float complex casinf(float complex);
include/complex.h
79
double complex casinh(double complex);
include/complex.h
80
float complex casinhf(float complex);
include/complex.h
81
long double complex
include/complex.h
82
casinhl(long double complex);
include/complex.h
83
long double complex
include/complex.h
84
casinl(long double complex);
include/complex.h
85
double complex catan(double complex);
include/complex.h
86
float complex catanf(float complex);
include/complex.h
87
double complex catanh(double complex);
include/complex.h
88
float complex catanhf(float complex);
include/complex.h
89
long double complex
include/complex.h
90
catanhl(long double complex);
include/complex.h
91
long double complex
include/complex.h
92
catanl(long double complex);
include/complex.h
93
double complex ccos(double complex);
include/complex.h
94
float complex ccosf(float complex);
include/complex.h
95
double complex ccosh(double complex);
include/complex.h
96
float complex ccoshf(float complex);
include/complex.h
97
double complex cexp(double complex);
include/complex.h
98
float complex cexpf(float complex);
include/complex.h
99
long double complex
lib/msun/ld128/k_expl.h
297
static inline long double complex
lib/msun/ld128/k_expl.h
298
__ldexp_cexpl(long double complex z, int expt)
lib/msun/ld128/s_cexpl.c
43
long double complex
lib/msun/ld128/s_cexpl.c
44
cexpl(long double complex z)
lib/msun/ld80/k_expl.h
274
static inline long double complex
lib/msun/ld80/k_expl.h
275
__ldexp_cexpl(long double complex z, int expt)
lib/msun/ld80/s_cexpl.c
42
long double complex
lib/msun/ld80/s_cexpl.c
43
cexpl (long double complex z)
lib/msun/src/catrig.c
273
double complex
lib/msun/src/catrig.c
274
casinh(double complex z)
lib/msun/src/catrig.c
278
double complex w;
lib/msun/src/catrig.c
334
double complex
lib/msun/src/catrig.c
335
casin(double complex z)
lib/msun/src/catrig.c
337
double complex w = casinh(CMPLX(cimag(z), creal(z)));
lib/msun/src/catrig.c
354
double complex
lib/msun/src/catrig.c
355
cacos(double complex z)
lib/msun/src/catrig.c
360
double complex w;
lib/msun/src/catrig.c
428
double complex
lib/msun/src/catrig.c
429
cacosh(double complex z)
lib/msun/src/catrig.c
431
double complex w;
lib/msun/src/catrig.c
453
static double complex
lib/msun/src/catrig.c
454
clog_for_large_values(double complex z)
lib/msun/src/catrig.c
570
double complex
lib/msun/src/catrig.c
571
catanh(double complex z)
lib/msun/src/catrig.c
62
static double complex clog_for_large_values(double complex z);
lib/msun/src/catrig.c
637
double complex
lib/msun/src/catrig.c
638
catan(double complex z)
lib/msun/src/catrig.c
640
double complex w = catanh(CMPLX(cimag(z), creal(z)));
lib/msun/src/catrigf.c
144
float complex
lib/msun/src/catrigf.c
145
casinhf(float complex z)
lib/msun/src/catrigf.c
149
float complex w;
lib/msun/src/catrigf.c
191
float complex
lib/msun/src/catrigf.c
192
casinf(float complex z)
lib/msun/src/catrigf.c
194
float complex w = casinhf(CMPLXF(cimagf(z), crealf(z)));
lib/msun/src/catrigf.c
199
float complex
lib/msun/src/catrigf.c
200
cacosf(float complex z)
lib/msun/src/catrigf.c
205
float complex w;
lib/msun/src/catrigf.c
258
float complex
lib/msun/src/catrigf.c
259
cacoshf(float complex z)
lib/msun/src/catrigf.c
261
float complex w;
lib/msun/src/catrigf.c
276
static float complex
lib/msun/src/catrigf.c
277
clog_for_large_values(float complex z)
lib/msun/src/catrigf.c
337
float complex
lib/msun/src/catrigf.c
338
catanhf(float complex z)
lib/msun/src/catrigf.c
386
float complex
lib/msun/src/catrigf.c
387
catanf(float complex z)
lib/msun/src/catrigf.c
389
float complex w = catanhf(CMPLXF(cimagf(z), crealf(z)));
lib/msun/src/catrigf.c
74
static float complex clog_for_large_values(float complex z);
lib/msun/src/catrigl.c
163
long double complex
lib/msun/src/catrigl.c
164
casinhl(long double complex z)
lib/msun/src/catrigl.c
168
long double complex w;
lib/msun/src/catrigl.c
210
long double complex
lib/msun/src/catrigl.c
211
casinl(long double complex z)
lib/msun/src/catrigl.c
213
long double complex w;
lib/msun/src/catrigl.c
219
long double complex
lib/msun/src/catrigl.c
220
cacosl(long double complex z)
lib/msun/src/catrigl.c
225
long double complex w;
lib/msun/src/catrigl.c
278
long double complex
lib/msun/src/catrigl.c
279
cacoshl(long double complex z)
lib/msun/src/catrigl.c
281
long double complex w;
lib/msun/src/catrigl.c
296
static long double complex
lib/msun/src/catrigl.c
297
clog_for_large_values(long double complex z)
lib/msun/src/catrigl.c
358
long double complex
lib/msun/src/catrigl.c
359
catanhl(long double complex z)
lib/msun/src/catrigl.c
407
long double complex
lib/msun/src/catrigl.c
408
catanl(long double complex z)
lib/msun/src/catrigl.c
410
long double complex w;
lib/msun/src/catrigl.c
93
static long double complex clog_for_large_values(long double complex z);
lib/msun/src/k_exp.c
85
double complex
lib/msun/src/k_exp.c
86
__ldexp_cexp(double complex z, int expt)
lib/msun/src/k_expf.c
68
float complex
lib/msun/src/k_expf.c
69
__ldexp_cexpf(float complex z, int expt)
lib/msun/src/math_private.h
512
float complex f;
lib/msun/src/math_private.h
516
double complex f;
lib/msun/src/math_private.h
520
long double complex f;
lib/msun/src/math_private.h
542
static __inline float complex
lib/msun/src/math_private.h
554
static __inline double complex
lib/msun/src/math_private.h
566
static __inline long double complex
lib/msun/src/math_private.h
818
double complex __ldexp_cexp(double complex,int);
lib/msun/src/math_private.h
836
float complex __ldexp_cexpf(float complex,int);
lib/msun/src/s_carg.c
33
carg(double complex z)
lib/msun/src/s_cargf.c
33
cargf(float complex z)
lib/msun/src/s_cargl.c
33
cargl(long double complex z)
lib/msun/src/s_ccosh.c
154
double complex
lib/msun/src/s_ccosh.c
155
ccos(double complex z)
lib/msun/src/s_ccosh.c
48
double complex
lib/msun/src/s_ccosh.c
49
ccosh(double complex z)
lib/msun/src/s_ccoshf.c
100
float complex
lib/msun/src/s_ccoshf.c
101
ccosf(float complex z)
lib/msun/src/s_ccoshf.c
40
float complex
lib/msun/src/s_ccoshf.c
41
ccoshf(float complex z)
lib/msun/src/s_cexp.c
39
double complex
lib/msun/src/s_cexp.c
40
cexp(double complex z)
lib/msun/src/s_cexpf.c
38
float complex
lib/msun/src/s_cexpf.c
39
cexpf(float complex z)
lib/msun/src/s_cimag.c
33
cimag(double complex z)
lib/msun/src/s_cimagf.c
33
cimagf(float complex z)
lib/msun/src/s_cimagl.c
33
cimagl(long double complex z)
lib/msun/src/s_clog.c
42
double complex
lib/msun/src/s_clog.c
43
clog(double complex z)
lib/msun/src/s_clogf.c
42
float complex
lib/msun/src/s_clogf.c
43
clogf(float complex z)
lib/msun/src/s_clogl.c
56
long double complex
lib/msun/src/s_clogl.c
57
clogl(long double complex z)
lib/msun/src/s_clogl.c
65
ENTERIT(long double complex);
lib/msun/src/s_conj.c
33
double complex
lib/msun/src/s_conj.c
34
conj(double complex z)
lib/msun/src/s_conjf.c
33
float complex
lib/msun/src/s_conjf.c
34
conjf(float complex z)
lib/msun/src/s_conjl.c
33
long double complex
lib/msun/src/s_conjl.c
34
conjl(long double complex z)
lib/msun/src/s_cpow.c
51
double complex
lib/msun/src/s_cpow.c
52
cpow(double complex a, double complex z)
lib/msun/src/s_cpow.c
54
double complex w;
lib/msun/src/s_cpowf.c
50
float complex
lib/msun/src/s_cpowf.c
51
cpowf(float complex a, float complex z)
lib/msun/src/s_cpowf.c
53
float complex w;
lib/msun/src/s_cpowl.c
50
long double complex
lib/msun/src/s_cpowl.c
51
cpowl(long double complex a, long double complex z)
lib/msun/src/s_cpowl.c
53
long double complex w;
lib/msun/src/s_cproj.c
35
double complex
lib/msun/src/s_cproj.c
36
cproj(double complex z)
lib/msun/src/s_cprojf.c
34
float complex
lib/msun/src/s_cprojf.c
35
cprojf(float complex z)
lib/msun/src/s_cprojl.c
34
long double complex
lib/msun/src/s_cprojl.c
35
cprojl(long double complex z)
lib/msun/src/s_creal.c
32
creal(double complex z)
lib/msun/src/s_crealf.c
32
crealf(float complex z)
lib/msun/src/s_creall.c
32
creall(long double complex z)
lib/msun/src/s_csinh.c
153
double complex
lib/msun/src/s_csinh.c
154
csin(double complex z)
lib/msun/src/s_csinh.c
48
double complex
lib/msun/src/s_csinh.c
49
csinh(double complex z)
lib/msun/src/s_csinhf.c
100
float complex
lib/msun/src/s_csinhf.c
101
csinf(float complex z)
lib/msun/src/s_csinhf.c
40
float complex
lib/msun/src/s_csinhf.c
41
csinhf(float complex z)
lib/msun/src/s_csqrt.c
38
double complex
lib/msun/src/s_csqrt.c
39
csqrt(double complex z)
lib/msun/src/s_csqrt.c
41
double complex result;
lib/msun/src/s_csqrtf.c
34
float complex
lib/msun/src/s_csqrtf.c
35
csqrtf(float complex z)
lib/msun/src/s_csqrtl.c
53
long double complex
lib/msun/src/s_csqrtl.c
54
csqrtl(long double complex z)
lib/msun/src/s_csqrtl.c
56
long double complex result;
lib/msun/src/s_ctanh.c
139
double complex
lib/msun/src/s_ctanh.c
140
ctan(double complex z)
lib/msun/src/s_ctanh.c
73
double complex
lib/msun/src/s_ctanh.c
74
ctanh(double complex z)
lib/msun/src/s_ctanhf.c
38
float complex
lib/msun/src/s_ctanhf.c
39
ctanhf(float complex z)
lib/msun/src/s_ctanhf.c
77
float complex
lib/msun/src/s_ctanhf.c
78
ctanf(float complex z)
lib/msun/src/w_cabs.c
13
cabs(double complex z)
lib/msun/src/w_cabsf.c
13
cabsf(float complex z)
lib/msun/src/w_cabsl.c
14
cabsl(long double complex z)
lib/msun/tests/cexp_test.c
60
volatile long double complex _d = z; \
lib/msun/tests/cexp_test.c
61
volatile type complex _r = result; \
lib/msun/tests/conj_test.c
42
static float complex (*libconjf)(float complex) = conjf;
lib/msun/tests/conj_test.c
43
static double complex (*libconj)(double complex) = conj;
lib/msun/tests/conj_test.c
44
static long double complex (*libconjl)(long double complex) = conjl;
lib/msun/tests/conj_test.c
45
static float (*libcrealf)(float complex) = crealf;
lib/msun/tests/conj_test.c
46
static double (*libcreal)(double complex) = creal;
lib/msun/tests/conj_test.c
47
static long double (*libcreall)(long double complex) = creall;
lib/msun/tests/conj_test.c
48
static float (*libcimagf)(float complex) = cimagf;
lib/msun/tests/conj_test.c
49
static double (*libcimag)(double complex) = cimag;
lib/msun/tests/conj_test.c
50
static long double (*libcimagl)(long double complex) = cimagl;
lib/msun/tests/conj_test.c
74
complex float in;
lib/msun/tests/conj_test.c
75
complex long double expected;
lib/msun/tests/csqrt_test.c
215
long double complex result;
lib/msun/tests/csqrt_test.c
256
long double complex result;
lib/msun/tests/csqrt_test.c
45
static long double complex (*t_csqrt)(long double complex);
lib/msun/tests/csqrt_test.c
47
static long double complex
lib/msun/tests/csqrt_test.c
48
_csqrtf(long double complex d)
lib/msun/tests/csqrt_test.c
51
return (csqrtf((float complex)d));
lib/msun/tests/csqrt_test.c
54
static long double complex
lib/msun/tests/csqrt_test.c
55
_csqrt(long double complex d)
lib/msun/tests/csqrt_test.c
58
return (csqrt((double complex)d));
lib/msun/tests/ctrig_test.c
137
long double complex zero = CMPLXL(0.0, 0.0);
lib/msun/tests/ctrig_test.c
155
long double complex nan_nan = CMPLXL(NAN, NAN);
lib/msun/tests/ctrig_test.c
156
long double complex z;
lib/msun/tests/ctrig_test.c
239
long double complex z, c, s;
lib/msun/tests/ctrig_test.c
312
long double complex z;
lib/msun/tests/ctrig_test.c
419
long double complex z;
lib/msun/tests/ctrig_test.c
444
long double complex z;
lib/msun/tests/ctrig_test.c
58
volatile long double complex _d = z; \
lib/msun/tests/invctrig_test.c
129
long double complex zero = CMPLXL(0.0, 0.0);
lib/msun/tests/invctrig_test.c
152
long double complex nan_nan = CMPLXL(NAN, NAN);
lib/msun/tests/invctrig_test.c
153
long double complex z;
lib/msun/tests/invctrig_test.c
234
long double complex z;
lib/msun/tests/invctrig_test.c
287
long double complex z;
lib/msun/tests/invctrig_test.c
330
complex long double z;
lib/msun/tests/invctrig_test.c
331
complex long double acos_z;
lib/msun/tests/invctrig_test.c
332
complex long double asin_z;
lib/msun/tests/invctrig_test.c
333
complex long double atan_z;
lib/msun/tests/invctrig_test.c
57
volatile long double complex _d = z; \
lib/msun/tests/test-utils.h
165
cfpequal(long double complex d1, long double complex d2)
lib/msun/tests/test-utils.h
81
static inline long double complex
lib/msun/tests/test-utils.h
84
long double complex z;
lib/msun/tests/test-utils.h
97
static int cfpequal(long double complex, long double complex) __used;
tools/regression/include/tgmath/tgmath.c
167
long double complex ldc;
tools/regression/include/tgmath/tgmath.c
168
double complex dc;
tools/regression/include/tgmath/tgmath.c
169
float complex fc;
tools/regression/include/tgmath/tgmath.c
322
RUN_TEST(FNC(1.l), long double complex) && \
tools/regression/include/tgmath/tgmath.c
323
RUN_TEST(FNC(ld), long double complex) && \
tools/regression/include/tgmath/tgmath.c
325
RUN_TEST(FNC(1.), double complex) && \
tools/regression/include/tgmath/tgmath.c
326
RUN_TEST(FNC(d), double complex) && \
tools/regression/include/tgmath/tgmath.c
327
RUN_TEST(FNC(1l), double complex) && \
tools/regression/include/tgmath/tgmath.c
328
RUN_TEST(FNC(i), double complex) && \
tools/regression/include/tgmath/tgmath.c
329
RUN_TEST(FNC(b), double complex) && \
tools/regression/include/tgmath/tgmath.c
331
RUN_TEST(FNC(1.f), float complex) && \
tools/regression/include/tgmath/tgmath.c
332
RUN_TEST(FNC(f), float complex) && \
tools/regression/include/tgmath/tgmath.c
337
RUN_TEST(FNC(ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
339
RUN_TEST(FNC(dc), double complex) && \
tools/regression/include/tgmath/tgmath.c
341
RUN_TEST(FNC(fc), float complex) && \
tools/regression/include/tgmath/tgmath.c
342
RUN_TEST(FNC(I), float complex) && \
tools/regression/include/tgmath/tgmath.c
357
RUN_TEST(FNC(ldc, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
358
RUN_TEST(FNC(ldc, dc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
359
RUN_TEST(FNC(ldc, fc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
360
RUN_TEST(FNC(ldc, ld), long double complex) && \
tools/regression/include/tgmath/tgmath.c
361
RUN_TEST(FNC(ldc, d), long double complex) && \
tools/regression/include/tgmath/tgmath.c
362
RUN_TEST(FNC(ldc, f), long double complex) && \
tools/regression/include/tgmath/tgmath.c
363
RUN_TEST(FNC(ldc, i), long double complex) && \
tools/regression/include/tgmath/tgmath.c
364
RUN_TEST(FNC(dc, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
365
RUN_TEST(FNC(I, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
366
RUN_TEST(FNC(1.l, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
367
RUN_TEST(FNC(1., ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
368
RUN_TEST(FNC(1.f, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
369
RUN_TEST(FNC(1, ldc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
370
RUN_TEST(FNC(ld, dc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
371
RUN_TEST(FNC(ld, fc), long double complex) && \
tools/regression/include/tgmath/tgmath.c
372
RUN_TEST(FNC(I, 1.l), long double complex) && \
tools/regression/include/tgmath/tgmath.c
373
RUN_TEST(FNC(dc, 1.l), long double complex) && \
tools/regression/include/tgmath/tgmath.c
375
RUN_TEST(FNC(dc, dc), double complex) && \
tools/regression/include/tgmath/tgmath.c
376
RUN_TEST(FNC(dc, fc), double complex) && \
tools/regression/include/tgmath/tgmath.c
377
RUN_TEST(FNC(dc, d), double complex) && \
tools/regression/include/tgmath/tgmath.c
378
RUN_TEST(FNC(dc, f), double complex) && \
tools/regression/include/tgmath/tgmath.c
379
RUN_TEST(FNC(dc, ull), double complex) && \
tools/regression/include/tgmath/tgmath.c
380
RUN_TEST(FNC(I, dc), double complex) && \
tools/regression/include/tgmath/tgmath.c
381
RUN_TEST(FNC(1., dc), double complex) && \
tools/regression/include/tgmath/tgmath.c
382
RUN_TEST(FNC(1, dc), double complex) && \
tools/regression/include/tgmath/tgmath.c
383
RUN_TEST(FNC(fc, d), double complex) && \
tools/regression/include/tgmath/tgmath.c
384
RUN_TEST(FNC(1, I), double complex) && \
tools/regression/include/tgmath/tgmath.c
386
RUN_TEST(FNC(fc, fc), float complex) && \
tools/regression/include/tgmath/tgmath.c
387
RUN_TEST(FNC(fc, I), float complex) && \
tools/regression/include/tgmath/tgmath.c
388
RUN_TEST(FNC(1.f, fc), float complex) && \
tools/regression/include/tgmath/tgmath.c
63
float complex (FNC ## f)(float complex x) { n_float_complex++; }\
tools/regression/include/tgmath/tgmath.c
64
double complex (FNC)(double complex x) { n_double_complex++; } \
tools/regression/include/tgmath/tgmath.c
65
long double complex \
tools/regression/include/tgmath/tgmath.c
66
(FNC ## l)(long double complex x) { n_long_double_complex++; }
tools/regression/include/tgmath/tgmath.c
69
float (FNC ## f)(float complex x) { n_float_complex++; } \
tools/regression/include/tgmath/tgmath.c
70
double (FNC)(double complex x) { n_double_complex++; } \
tools/regression/include/tgmath/tgmath.c
72
(FNC ## l)(long double complex x) { n_long_double_complex++; }
tools/regression/include/tgmath/tgmath.c
91
float complex (cpowf)(float complex x, float complex y) { n_float_complex++; }
tools/regression/include/tgmath/tgmath.c
92
double complex
tools/regression/include/tgmath/tgmath.c
93
(cpow)(double complex x, double complex y) { n_double_complex++; }
tools/regression/include/tgmath/tgmath.c
94
long double complex
tools/regression/include/tgmath/tgmath.c
95
(cpowl)(long double complex x, long double complex y)