Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:fv

6 void test_f(int iv, float fv) {
7 float* fp = f(fv);
17 void test_g(int iv, float fv) {
18 int* ip1 = g(iv, fv, 0);
20 double* dp1 = g(iv, fv, fv);
22 char* cp2 = g(0, 0, 0, iv, fv);
24 double* dp2 = g(0, fv, 1.5); // expected-error {{call to 'g' is ambiguous}}
30 void test_h(float fv, unsigned char cv) {
31 double* dp = h(fv);