Searched refs:f1 (Results 51 - 75 of 499) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2009-06-18-StaticInitTailPadPack.c7 Foo f1; member in struct:Bar
12 struct Bar f1; member in struct:Baz
16 unsigned long f1; member in struct:Qux
H A Dbitfield-assign.c18 _Bool f1 : 1; member in struct:s0
29 void f1(void) { function
31 if ((s.f1 = 3) != 1) g0();
H A Dinline2.c9 // CHECK-GNU89: define i32 @f1()
10 // CHECK-C99: define i32 @f1()
11 inline int f1(void);
12 int f1(void) { return 0; } function
60 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A D2008-07-31-asm-labels.c19 void f1() { function
H A DPR2743-reference-missing-static.c13 void f1() { e1(); } function
H A Dalways_inline.c12 int f1() { function
H A Dassign.c21 // CHECK: define void @f1()
28 void f1() { function
/external/clang/test/CodeGenCXX/
H A Dconvert-to-fptr.cpp9 int f1(int arg) { return arg; }; function
18 operator fp1() { return f1; }
28 operator fr1() { return f1; }
34 int i = a(10); // Calls f1 via pointer returned from conversion function
37 int j = b(20); // Calls f1 via pointer returned from conversion function
H A DPR5834-constructor-conversion.cpp11 void f1() { function
H A Dcxx-apple-kext.cpp35 extern "C" void f1() { function
H A Dreinterpret-cast.cpp2 void *f1(unsigned long l) { function
/external/v8/test/mjsunit/
H A Darguments-indirect.js28 function f1() { function
29 g(f1);
46 f1(1,2,3);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dext-blocks.cpp14 int f1(Args ...args) {
21 template int f1(const char*, int, float, double);
26 return f1(block_args...);
35 return f1(block_args...);
44 return f1(block_args); // expected-error{{expression contains unexpanded parameter pack 'block_args'}}
/external/clang/test/Sema/
H A Dpragma-align-packed.c6 int f1 __attribute__((aligned(4))); member in struct:s0
13 int f1 __attribute__((aligned(4))); member in struct:s1
20 int f1 __attribute__((aligned(4))); member in struct:s2
26 struct s3_0 { unsigned char f0; unsigned int f1; }; member in struct:s3_0
29 struct s3_1 { unsigned char f0; unsigned int f1; }; member in struct:s3_1
H A Dpragma-align-mac68k.c15 int f1; member in struct:s1
18 extern int a1_1[offsetof(struct s1, f1) == 2 ? 1 : -1];
24 double f1; member in struct:s2
27 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
33 v4f_t f1; member in struct:s3
36 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
42 char f1; member in struct:s4
45 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1];
51 unsigned f1 : 9; member in struct:s5
80 char f1; member in struct:s9
93 v2f_t f1; member in struct:s11
[all...]
/external/clang/test/SemaCXX/
H A Dqualified-id-lookup.cpp30 int& f1();
34 struct f1 { struct in namespace:N
43 int &i1 = f1();
47 void N::f1::foo(int i) {
48 f1::member = i;
49 f1::type &ir = i;
53 float& f1(int x) { function in namespace:N
54 N::f1::type& i1 = x;
55 f1::type& i2 = x;
64 int i1 = N::f1
[all...]
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp11 X0 f1();
12 X0 f1(double);
31 X1 (f1)(int);
32 X1 (f1)(type);
41 template<typename T> X1<T> X1<T>::f1(int) { return 0; } function in class:X1
42 template<typename T> X1<T> (X1<T>::f1)(type) { return 0; } function
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
H A Dp2.cpp24 template <typename T> int f1(T);
25 template <typename T, typename U> int f1(T, U);
35 &f1<__typeof__(e1)>); // expected-warning{{template argument uses unnamed type}}
36 int (*fp1)(int, __typeof__(e2)) = f1; // expected-warning{{template argument uses unnamed type}}
37 f1(e2); // expected-warning{{template argument uses unnamed type}}
38 f1(e2);
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp18 template<typename T, int N> void f1(T (&array)[N]); // expected-note{{matches}}
19 template<int N> void f1(int (&array)[N]); // expected-note{{matches}}
21 template<> void f1(float (&array)[1]);
22 template<> void f1(int (&array)[1]);
25 template<typename T> void f1(T (&array)[17]); // expected-note{{matches}}
26 template<> void f1(int (&array)[17]); // expected-error{{ambiguous}}
/external/valgrind/main/none/tests/s390x/
H A Dfgx.c9 double f1; local
11 memset(&f1, 0x0f, sizeof(double));
12 f = f1;
/external/clang/test/Analysis/
H A Dcomplex.c5 void f1(int * p) { function
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp10.cpp9 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}} member in struct:s0
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp4.cpp10 void f1(); // expected-note{{here}}
15 template void X0<int>::f1(); // expected-error{{explicit instantiation of undefined member function}}
22 template<> void X0<long>::f1(); // expected-note{{previous template specialization is here}}
23 template void X0<long>::f1(); // expected-warning{{explicit instantiation of 'f1' that occurs after an explicit specialization will be ignored}}
/external/clang/test/Index/
H A Dcomplete-unterminated.c11 void f1(char);
/external/clang/test/PCH/
H A Dmultiple_decls.c15 void f1(int i) { function

Completed in 492 milliseconds

1234567891011>>