Home | History | Annotate | Download | only in Sema

Lines Matching defs:Double

9 double *f(double) __attribute__((overloadable)); // okay, new
11 void test_f(int iv, float fv, double dv) {
14 double *dp = f(dv);
19 float *accept_funcptr(int (*)(int, double)) __attribute__((overloadable)); // \
22 void test_funcptr(int (*f1)(int, double),
38 double *f(int) __attribute__((overloadable)); // expected-error{{conflicting types for 'f'}}
40 double promote(float) __attribute__((__overloadable__)); // expected-note {{candidate}}
41 double promote(double) __attribute__((__overloadable__)); // expected-note {{candidate}}
42 long double promote(long double) __attribute__((__overloadable__)); // expected-note {{candidate}}
53 typedef double Double;
54 typedef Double DoubleVec __attribute__((vector_size(16)));
57 double magnitude(DoubleVec) __attribute__((__overloadable__));
58 double magnitude(IntVec) __attribute__((__overloadable__));
59 double test_p6600(DoubleVec d) {