Home
last modified time | relevance | path

Searched refs:ap1 (Results 1 – 25 of 36) sorted by relevance

12

/external/clang/test/SemaCXX/
Daddress-space-conversion.cpp26 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, in test_const_cast() argument
38 (void)const_cast<A_ptr>(ap1); // expected-error{{is not allowed}} in test_const_cast()
43 (void)const_cast<A_ptr_2>(ap1); // expected-error{{is not allowed}} in test_const_cast()
51 A_ptr ap, A_ptr_1 ap1, A_ptr_2 ap2, in test_static_cast() argument
60 (void)static_cast<B_ptr_1>(ap1); in test_static_cast()
65 (void)static_cast<void_ptr_1>(ap1); in test_static_cast()
80 (void)static_cast<B_ptr>(ap1); // expected-error{{casts away qualifiers}} in test_static_cast()
85 (void)static_cast<B_ptr_2>(ap1); // expected-error{{casts away qualifiers}} in test_static_cast()
88 (void)static_cast<void_ptr>(ap1); // expected-error{{is not allowed}} in test_static_cast()
93 (void)static_cast<void_ptr_2>(ap1); // expected-error{{is not allowed}} in test_static_cast()
[all …]
/external/llvm/test/CodeGen/X86/
Dwin64_vararg.ll15 %ap1 = bitcast i8** %ap to i8* ; <i8*> [#uses=1]
16 call void @llvm.va_start(i8* %ap1)
29 %ap1 = bitcast i8** %ap to i8*
30 call void @llvm.va_start(i8* %ap1)
31 ret i8* %ap1
40 %ap1 = bitcast i8** %ap to i8*
41 call void @llvm.va_start(i8* %ap1)
42 ret i8* %ap1
51 %ap1 = bitcast i8** %ap to i8*
52 call void @llvm.va_start(i8* %ap1)
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dwin64_vararg.ll15 %ap1 = bitcast i8** %ap to i8* ; <i8*> [#uses=1]
16 call void @llvm.va_start(i8* %ap1)
28 %ap1 = bitcast i8** %ap to i8*
29 call void @llvm.va_start(i8* %ap1)
30 ret i8* %ap1
39 %ap1 = bitcast i8** %ap to i8*
40 call void @llvm.va_start(i8* %ap1)
41 ret i8* %ap1
50 %ap1 = bitcast i8** %ap to i8*
51 call void @llvm.va_start(i8* %ap1)
[all …]
/external/llvm/test/CodeGen/Mips/
Do32_cc_vararg.ll21 %ap1 = bitcast i8** %ap to i8*
22 call void @llvm.va_start(i8* %ap1)
47 %ap1 = bitcast i8** %ap to i8*
48 call void @llvm.va_start(i8* %ap1)
75 %ap1 = bitcast i8** %ap to i8*
76 call void @llvm.va_start(i8* %ap1)
98 %ap1 = bitcast i8** %ap to i8*
99 call void @llvm.va_start(i8* %ap1)
126 %ap1 = bitcast i8** %ap to i8*
127 call void @llvm.va_start(i8* %ap1)
[all …]
/external/swiftshader/third_party/LLVM/test/CodeGen/Mips/
Do32_cc_vararg.ll22 %ap1 = bitcast i8** %ap to i8*
23 call void @llvm.va_start(i8* %ap1)
48 %ap1 = bitcast i8** %ap to i8*
49 call void @llvm.va_start(i8* %ap1)
76 %ap1 = bitcast i8** %ap to i8*
77 call void @llvm.va_start(i8* %ap1)
99 %ap1 = bitcast i8** %ap to i8*
100 call void @llvm.va_start(i8* %ap1)
127 %ap1 = bitcast i8** %ap to i8*
128 call void @llvm.va_start(i8* %ap1)
[all …]
/external/syslinux/com32/lib/
Dvasprintf.c11 va_list ap1; in vasprintf() local
15 va_copy(ap1, ap); in vasprintf()
17 bytes = vsnprintf(NULL, 0, format, ap1) + 1; in vasprintf()
18 va_end(ap1); in vasprintf()
Dasprintf.c11 va_list ap, ap1; in asprintf() local
17 va_copy(ap1, ap); in asprintf()
19 bytes = vsnprintf(NULL, 0, format, ap1) + 1; in asprintf()
20 va_end(ap1); in asprintf()
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
Dassignment.pass.cpp28 std::auto_ptr<A> ap1(p1); in test() local
32 assert(ap1.get() == p1); in test()
34 std::auto_ptr<A>& apr = ap2 = ap1; in test()
37 assert(ap1.get() == 0); in test()
Dassignment.fail.cpp26 const std::auto_ptr<A> ap1(p1); in test() local
30 assert(ap1.get() == p1); in test()
32 std::auto_ptr<A>& apr = ap2 = ap1; in test()
35 assert(ap1.get() == 0); in test()
Dconvert_assignment.pass.cpp28 std::auto_ptr<B> ap1(p1); in test() local
33 assert(ap1.get() == p1); in test()
35 std::auto_ptr<A>& apr = ap2 = ap1; in test()
39 assert(ap1.get() == 0); in test()
Dconvert_assignment.fail.cpp26 const std::auto_ptr<B> ap1(p1); in test() local
31 assert(ap1.get() == p1); in test()
33 std::auto_ptr<A>& apr = ap2 = ap1; in test()
37 assert(ap1.get() == 0); in test()
Dcopy.fail.cpp26 const std::auto_ptr<A> ap1(p); in test() local
27 std::auto_ptr<A> ap2(ap1); in test()
28 assert(ap1.get() == 0); in test()
Dcopy.pass.cpp28 std::auto_ptr<A> ap1(p); in test() local
29 std::auto_ptr<A> ap2(ap1); in test()
30 assert(ap1.get() == 0); in test()
Dconvert.pass.cpp28 std::auto_ptr<B> ap1(p); in test() local
29 std::auto_ptr<A> ap2(ap1); in test()
30 assert(ap1.get() == 0); in test()
Dconvert.fail.cpp26 const std::auto_ptr<B> ap1(p); in test() local
27 std::auto_ptr<A> ap2(ap1); in test()
28 assert(ap1.get() == 0); in test()
/external/jemalloc/test/integration/
Dallocated.c17 uint64_t *ap0, *ap1, *dp0, *dp1; in thd_start() local
62 sz = sizeof(ap1); in thd_start()
63 mallctl("thread.allocatedp", (void *)&ap1, &sz, NULL, 0); in thd_start()
64 assert_u64_eq(*ap1, a1, in thd_start()
67 assert_ptr_eq(ap0, ap1, in thd_start()
/external/syslinux/com32/menu/
Drefstr.c68 va_list ap1; in vrsprintf() local
72 va_copy(ap1, ap); in vrsprintf()
73 len = vsnprintf(NULL, 0, fmt, ap1); in vrsprintf()
74 va_end(ap1); in vrsprintf()
/external/syslinux/com32/elflink/ldlinux/
Drefstr.c69 va_list ap1; in vrsprintf() local
73 va_copy(ap1, ap); in vrsprintf()
74 len = vsnprintf(NULL, 0, fmt, ap1); in vrsprintf()
75 va_end(ap1); in vrsprintf()
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
Dconvert_to_auto_ptr_ref.pass.cpp27 std::auto_ptr<B> ap1(p1); in test() local
28 std::auto_ptr_ref<A> apr = ap1; in test()
30 assert(ap1.get() == nullptr); in test()
Dconvert_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<B> ap1(p1); in test() local
29 std::auto_ptr_ref<A> apr = ap1; in test()
32 assert(ap1.get() == 0); in test()
Dassign_from_auto_ptr_ref.pass.cpp28 std::auto_ptr<A> ap1(p1); in test() local
29 std::auto_ptr_ref<A> apr = ap1; in test()
34 assert(ap1.get() == 0); in test()
/external/clang/test/Analysis/
Dmalloc-sizeof.c22 struct A *ap1 = calloc(1, sizeof(struct A)); in foo() local
23 struct A *ap2 = calloc(2, sizeof(*ap1)); in foo()
24 …struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to a… in foo()
/external/llvm/test/CodeGen/ARM/
Dva_arg.ll30 %ap1 = bitcast i8** %ap to i8* ; <i8*> [#uses=2]
31 call void @llvm.va_start(i8* %ap1)
35 call void @llvm.va_end(i8* %ap1)
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
Dva_arg.ll30 %ap1 = bitcast i8** %ap to i8* ; <i8*> [#uses=2]
31 call void @llvm.va_start(i8* %ap1)
35 call void @llvm.va_end(i8* %ap1)
D2009-10-30.ll12 %ap1 = bitcast i8** %ap to i8*
13 call void @llvm.va_start(i8* %ap1)

12