HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 51 - 75 of 744) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/ASTMerge/Inputs/
function2.c 3 void f1(Int, double);
  /external/clang/test/CodeGen/
2006-10-30-ArrayCrash.c 7 short f1[3]; member in struct:S
attr-used.c 4 // RUN: grep '@llvm.used = .*@f1.l0' %t
12 void f1() { function
2009-06-18-StaticInitTailPadPack.c 7 Foo f1; member in struct:Bar
12 struct Bar f1; member in struct:Baz
16 unsigned long f1; member in struct:Qux
bitfield-assign.c 18 _Bool f1 : 1; member in struct:s0
29 void f1(void) { function
31 if ((s.f1 = 3) != 1) g0();
inline2.c 9 // 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()
microsoft-call-conv-x64.c 3 void __fastcall f1(void);
7 f1();
8 // CHECK: call void @f1()
17 void (__fastcall *pf1)(void) = f1;
  /external/clang/test/CodeGenCXX/
operator-new.cpp 13 void f1() { function
convert-to-fptr.cpp 9 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
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 2 extern int f1(int);
  /external/clang/test/SemaCXX/
c99.cpp 2 void f1(int i[static 5]) { // expected-error{{C99}} function
qualified-id-lookup.cpp 30 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::member
    [all...]
  /external/llvm/test/MC/ELF/
cfi-sections.s 6 f1: label
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/exception.unexpected/set.unexpected/
set_unexpected.pass.cpp 16 void f1() {} function
26 std::unexpected_handler old = std::set_unexpected(f1);
29 // verify f1 was replace with f2
30 assert(std::set_unexpected(f2) == f1);
get_unexpected.pass.cpp 16 void f1() {} function
30 std::set_unexpected(f1);
31 assert(std::get_unexpected() == f1);
32 // verify f1 was replace with f2
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/set.new.handler/
get_new_handler.pass.cpp 15 void f1() {} function
21 std::set_new_handler(f1);
22 assert(std::get_new_handler() == f1);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
ext-blocks.cpp 14 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/
pragma-align-packed.c 7 int f1 __attribute__((aligned(4))); member in struct:s0
14 int f1 __attribute__((aligned(4))); member in struct:s1
21 int f1 __attribute__((aligned(4))); member in struct:s2
27 struct s3_0 { unsigned char f0; unsigned int f1; }; member in struct:s3_0
30 struct s3_1 { unsigned char f0; unsigned int f1; }; member in struct:s3_1
pragma-align-mac68k.c 16 int f1; member in struct:s1
19 extern int a1_1[offsetof(struct s1, f1) == 2 ? 1 : -1];
25 double f1; member in struct:s2
28 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
34 v4f_t f1; member in struct:s3
37 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
43 char f1; member in struct:s4
46 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1];
52 unsigned f1 : 9; member in struct:s5
81 char f1; member in struct:s9
94 v2f_t f1; member in struct:s11
107 int f1; member in struct:s12
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 24 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/
function-template-specialization.cpp 18 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/
fgx.c 9 double f1; local
11 memset(&f1, 0x0f, sizeof(double));
12 f = f1;
  /external/clang/test/Analysis/
complex.c 5 void f1(int * p) { function
  /external/clang/test/Analysis/diagnostics/
undef-value-param.c 48 double *f1; member in struct:WithFields
55 X->f1 = getValidPtr();
59 st.f1 = 0; // expected-note {{Null pointer value stored to 'st.f1'}}
62 return (*st.f1); //expected-warning {{Dereference of null pointer}}
63 //expected-note@-1{{Dereference of null pointer (loaded from field 'f1')}}
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p4.cpp 10 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}}

Completed in 574 milliseconds

1 23 4 5 6 7 8 91011>>