Searched refs:f1 (Results 76 - 100 of 966) sorted by relevance

1234567891011>>

/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_and_lib.cc10 extern "C" __declspec(dllexport) int f1() { function
/external/llvm/test/ExecutionEngine/RuntimeDyld/SystemZ/
H A Dcfi-relo-pc64.s9 f1: label
/external/llvm/test/MC/ELF/
H A Dcfi-sections.s12 f1: label
/external/swiftshader/third_party/LLVM/test/MC/ELF/
H A Dcfi-sections.s6 f1: label
/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 Dwindows-struct-abi.c3 struct f1 { struct
7 struct f1 return_f1(void) { while (1); }
11 void receive_f1(struct f1 a0) { }
H A Dinline2.c9 // CHECK-GNU89-LABEL: define i32 @f1()
10 // CHECK-C99-LABEL: define i32 @f1()
11 inline int f1(void);
12 int f1(void) { return 0; } function
65 return f0() + f1() + f2() + f3() + f4() + f5() + f6() + f7() + f8() + f9()
H A Dmicrosoft-call-conv-x64.c3 void __fastcall f1(void);
7 f1();
8 // CHECK: call void @f1()
17 void (__fastcall *pf1)(void) = f1;
/external/clang/test/CodeGenCXX/
H A Dconvert-to-fptr.cpp8 int f1(int arg) { return arg; }; function
17 operator fp1() { return f1; }
27 operator fr1() { return f1; }
33 int i = a(10); // Calls f1 via pointer returned from conversion function
36 int j = b(20); // Calls f1 via pointer returned from conversion function
H A Dcall-with-static-chain.cpp14 int f1(A, A, A, A);
24 // CHECK32: call i32 bitcast (i32 (i32, i32, i32, i32, i32, i32, i32, i32)* @f1 to i32 (i8*, i32, i32, i32, i32, i32, i32, i32, i32)*)(i8* nest bitcast (i32 (i32, i32, i32, i32, i32, i32, i32, i32)* @f1 to i8*)
25 // CHECK64: call i32 bitcast (i32 (i64, i64, i64, i64, i64, i64, %struct.A*)* @f1 to i32 (i8*, i64, i64, i64, i64, i64, i64, %struct.A*)*)(i8* nest bitcast (i32 (i64, i64, i64, i64, i64, i64, %struct.A*)* @f1 to i8*)
26 __builtin_call_with_static_chain(f1(a, a, a, a), f1); local
/external/libcxx/test/libcxx/depr/exception.unexpected/
H A Dset_unexpected.pass.cpp18 void f1() {} function
28 std::unexpected_handler old = std::set_unexpected(f1);
31 // verify f1 was replace with f2
32 assert(std::set_unexpected(f2) == f1);
/external/libcxx/test/std/depr/exception.unexpected/set.unexpected/
H A Dset_unexpected.pass.cpp18 void f1() {} function
28 std::unexpected_handler old = std::set_unexpected(f1);
31 // verify f1 was replace with f2
32 assert(std::set_unexpected(f2) == f1);
/external/libcxx/test/std/language.support/support.dynamic/alloc.errors/set.new.handler/
H A Dget_new_handler.pass.cpp15 void f1() {} function
21 std::set_new_handler(f1);
22 assert(std::get_new_handler() == f1);
/external/llvm/test/MC/Mips/
H A Delf_st_other.s4 .globl f1
5 .type f1, @function
7 f1: label
23 // CHECK-LABEL: Name: f1
/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.c7 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
H A Dpragma-align-mac68k.c16 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/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/
H A Dswap.pass.cpp64 std::function<int(int)> f1 = A(1); local
68 assert(f1.target<A>()->id() == 1);
70 f1.swap(f2);
73 assert(f1.target<A>()->id() == 2);
79 std::function<int(int)> f1 = A(1); local
83 assert(f1.target<A>()->id() == 1);
85 f1.swap(f2);
88 assert(*f1.target<int (*)(int)>() == g);
94 std::function<int(int)> f1 = g; local
98 assert(*f1
109 std::function<int(int)> f1 = g; local
124 std::function<int(int)> f1 = A(1); local
137 std::function<int()> f1 = g0; local
145 std::function<int(int, int)> f1 = g2; local
153 std::function<int(int, int, int)> f1 = g3; local
161 std::function<int()> f1 = A(1); local
172 std::function<int(int, int)> f1 = A(2); local
183 std::function<int(int, int, int)> f1 = A(3); local
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-shadow.cpp34 int f1, f2, f3, f4; // expected-note 8 {{previous declaration is here}} member in class:A
37 A(int f1, int f2, int f3, int f4) // expected-note-re 4 {{variable 'f{{[0-4]}}' is declared here}} argument
38 : f1(f1) {
39 f1 = 3; // expected-warning {{modifying constructor parameter 'f1' that shadows a field of 'A'}}
40 f1 = 4; // one warning per shadow
48 A(int f1, int f2, int f3, int f4, double overload_dummy) {} argument
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/valgrind/none/tests/s390x/
H A Dbfp-1.c7 volatile float f1, f2; variable
31 register float r1 asm("f1") = f1;
37 printf("%f + %f = %f\n", f1, f2, r1);
42 register float r1 asm("f1") = f1;
48 printf("%f - %f = %f\n", f1, f2, r1);
53 register float r1 asm("f1") = f1;
59 printf("%f * %f = %f\n", f1, f
[all...]
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp12 X0 f1();
13 X0 f1(double);
32 X1 (f1)(int);
33 X1 (f1)(type);
42 template<typename T> X1<T> X1<T>::f1(int) { return 0; } function in class:X1
43 template<typename T> X1<T> (X1<T>::f1)(type) { return 0; } function
/external/clang/test/SemaTemplate/
H A Dfunction-template-specialization.cpp19 template<typename T, int N> void f1(T (&array)[N]); // expected-note{{matches}}
20 template<int N> void f1(int (&array)[N]); // expected-note{{matches}}
22 template<> void f1(float (&array)[1]);
23 template<> void f1(int (&array)[1]);
26 template<typename T> void f1(T (&array)[17]); // expected-note{{matches}}
27 template<> void f1(int (&array)[17]); // expected-error{{ambiguous}}
H A Dinstantiate-exception-spec.cpp5 template<typename T> void f1(T*) throw(T); // expected-error{{incomplete type 'Incomplete' is not allowed in exception specification}}
9 f1(int_p);
10 f1(incomplete_p); // expected-note{{instantiation of}}

Completed in 883 milliseconds

1234567891011>>