Lines Matching full:_complex
4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
12 int *foo(float _Complex);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
21 long *foo(double _Complex);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
30 char *promote_or_convert(double _Complex); // expected-note{{candidate function}}
31 int *promote_or_convert(long double _Complex); // expected-note{{candidate function}}
33 void test_promote_or_convert(float f, float _Complex fc) {
39 int *promote_or_convert2(double _Complex);
41 void test_promote_or_convert2(float _Complex fc) {
45 char *promote_or_convert3(int _Complex); // expected-note {{candidate}}
46 int *promote_or_convert3(long _Complex); // expected-note {{candidate}}
48 void test_promote_or_convert3(short _Complex sc) {
55 char &convert4(short _Complex);