Home
last modified time | relevance | path

Searched defs:A (Results 1 – 25 of 2898) sorted by relevance

12345678910>>...116

/external/clang/test/CodeGen/
Dsse2-builtins.c9 __m128i test_mm_add_epi8(__m128i A, __m128i B) { in test_mm_add_epi8()
15 __m128i test_mm_add_epi16(__m128i A, __m128i B) { in test_mm_add_epi16()
21 __m128i test_mm_add_epi32(__m128i A, __m128i B) { in test_mm_add_epi32()
27 __m128i test_mm_add_epi64(__m128i A, __m128i B) { in test_mm_add_epi64()
33 __m128d test_mm_add_pd(__m128d A, __m128d B) { in test_mm_add_pd()
39 __m128d test_mm_add_sd(__m128d A, __m128d B) { in test_mm_add_sd()
45 __m128i test_mm_adds_epi8(__m128i A, __m128i B) { in test_mm_adds_epi8()
51 __m128i test_mm_adds_epi16(__m128i A, __m128i B) { in test_mm_adds_epi16()
57 __m128i test_mm_adds_epu8(__m128i A, __m128i B) { in test_mm_adds_epu8()
63 __m128i test_mm_adds_epu16(__m128i A, __m128i B) { in test_mm_adds_epu16()
[all …]
/external/clang/test/SemaCXX/
Dclass-base-member-init.cpp20 struct A { struct
25 A(); argument
28 A::A() : a(10), b(20) { } in A() function in A
31 template<typename T> struct A {}; struct
40 template<typename T> struct A : T { struct
41 A() : T(), // expected-note {{previous initialization is here}} in A() argument
47 template<typename T> struct A { struct
48 T t;
50 A() : t(1), // expected-note {{previous initialization is here}} in A() argument
56 class A { class
[all …]
/external/clang/lib/Headers/
Davx512erintrin.h31 #define _mm512_exp2a23_round_pd(A, R) __extension__ ({ \ argument
36 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) __extension__ ({ \ argument
41 #define _mm512_maskz_exp2a23_round_pd(M, A, R) __extension__ ({ \ argument
46 #define _mm512_exp2a23_pd(A) \ argument
49 #define _mm512_mask_exp2a23_pd(S, M, A) \ argument
52 #define _mm512_maskz_exp2a23_pd(M, A) \ argument
55 #define _mm512_exp2a23_round_ps(A, R) __extension__ ({ \ argument
60 #define _mm512_mask_exp2a23_round_ps(S, M, A, R) __extension__ ({ \ argument
65 #define _mm512_maskz_exp2a23_round_ps(M, A, R) __extension__ ({ \ argument
70 #define _mm512_exp2a23_ps(A) \ argument
[all …]
/external/clang/test/CodeGenCXX/
Duncopyable-args.cpp6 struct A { struct
14 // CHECK: alloca %"struct.trivial::A"
23 struct A { struct
34 // CHECK: alloca %"struct.default_ctor::A"
46 struct A { struct
59 // CHECK-DISABLED: call void @_ZN9move_ctor3fooENS_1AE(%"struct.move_ctor::A"* %{{.*}})
66 struct A { struct
80 // CHECK-DISABLED: call void @_ZN11all_deleted3fooENS_1AE(%"struct.all_deleted::A"* %{{.*}})
87 struct A { struct
100 // CHECK-DISABLED: call void @_ZN18implicitly_deleted3fooENS_1AE(%"struct.implicitly_deleted::A"* %…
[all …]
Dskip-vtable-pointer-initialization.cpp8 struct A { struct
24 struct A { struct
45 struct A { struct
49 Field field;
71 struct A { struct
75 Field field;
95 struct A { struct
99 Field field;
123 struct A { struct
127 Field field;
[all …]
Dnew-overflow.cpp7 struct A { struct
9 int x;
29 struct A { struct
31 int x;
52 struct A { struct
55 int x;
80 struct A { struct
99 struct A { struct
118 struct A { struct
120 int x;
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.friend/
Dp5.cpp4 template <class T> class A { class
26 template <class T> struct A { struct
27 void f() { C::foo(); } in f()
30 template <class T> struct A<T*> { struct
31 void f() { C::foo(); } in f()
34 template <> struct A<char> { struct
35 void f() { C::foo(); } in f()
48 template <class T> struct A { struct
49 void f() { C::foo(); } in f()
52 template <class T> struct A<T*> { struct
[all …]
/external/clang/test/Modules/Inputs/merge-decl-context/
Da.h5 struct A { struct
7 A(I i1, I i2) { in A() function
9 A(double) {} in A() function
10 A(double, double) {} in A() argument
11 A(double, int) {} in A() argument
12 A(int, double) {} in A() argument
/external/libcxx/test/std/atomics/atomics.types.operations/atomics.types.operations.req/
Datomic_fetch_add.pass.cpp40 typedef std::atomic<T> A; in test() typedef
47 typedef std::atomic<T> A; in test() typedef
60 typedef std::atomic<T> A; in testp() typedef
68 typedef std::atomic<T> A; in testp() typedef
77 struct A struct
81 explicit A(int d = 0) noexcept {i=d;} in A() argument
82 A(const A& a) : i(a.i) {} in A() function
83 A(const volatile A& a) : i(a.i) {} in A() function
85 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
Datomic_fetch_sub.pass.cpp40 typedef std::atomic<T> A; in test() typedef
47 typedef std::atomic<T> A; in test() typedef
60 typedef std::atomic<T> A; in testp() typedef
68 typedef std::atomic<T> A; in testp() typedef
77 struct A struct
81 explicit A(int d = 0) noexcept {i=d;} in A() argument
82 A(const A& a) : i(a.i) {} in A() function
83 A(const volatile A& a) : i(a.i) {} in A() function
85 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
Datomic_fetch_sub_explicit.pass.cpp41 typedef std::atomic<T> A; in test() typedef
49 typedef std::atomic<T> A; in test() typedef
63 typedef std::atomic<T> A; in testp() typedef
72 typedef std::atomic<T> A; in testp() typedef
82 struct A struct
86 explicit A(int d = 0) noexcept {i=d;} in A() argument
87 A(const A& a) : i(a.i) {} in A() argument
88 A(const volatile A& a) : i(a.i) {} in A() argument
90 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
Datomic_fetch_add_explicit.pass.cpp40 typedef std::atomic<T> A; in test() typedef
48 typedef std::atomic<T> A; in test() typedef
62 typedef std::atomic<T> A; in testp() typedef
71 typedef std::atomic<T> A; in testp() typedef
81 struct A struct
85 explicit A(int d = 0) noexcept {i=d;} in A() argument
86 A(const A& a) : i(a.i) {} in A() argument
87 A(const volatile A& a) : i(a.i) {} in A() function
89 void operator=(const volatile A& a) volatile {i = a.i;} in operator =() argument
/external/clang/test/SemaTemplate/
Dconstructor-template.cpp43 typedef X1<T> A; typedef
56 template<class C> struct A {}; struct
57 template <> struct A<int>{A(const A<int>&);}; struct
142 template <class T, class U> struct A { struct
143 A() {} in A() function
144 A(const A<T,U> &o) {} in A() argument
145 A(A<T,T> o) {} in A() function
159 template <class T, class U> struct A { struct
160 A() {} // expected-note {{not viable: requires 0 arguments}} in A() argument
161 A(A<T,U> &o) {} // expected-note {{not viable: expects an l-value}} in A() function
[all …]
Dinstantiate-self.cpp6 template<typename T> struct A { struct
8 B b; // expected-error {{has incomplete type 'test1::A<int>::B'}}
10 B b; // expected-note {{in instantiation of}}
16 template<typename T> struct A { struct
17 struct B {
20 friend constexpr int operator+(int, C) { return 4; } in operator +()
22 B b; // expected-note {{in instantiation of}}
29 template<typename T> struct A { struct
30 struct B {
34 B b;
[all …]
/external/curl/tests/libtest/
Dtest.h47 #define test_setopt(A,B,C) \ argument
50 #define test_multi_setopt(A,B,C) \ argument
129 #define exe_easy_init(A,Y,Z) do { \ argument
136 #define res_easy_init(A) \ argument
139 #define chk_easy_init(A,Y,Z) do { \ argument
145 #define easy_init(A) \ argument
150 #define exe_multi_init(A,Y,Z) do { \ argument
157 #define res_multi_init(A) \ argument
160 #define chk_multi_init(A,Y,Z) do { \ argument
166 #define multi_init(A) \ argument
[all …]
/external/clang/test/CodeGenObjCXX/
Dmicrosoft-abi-arc-param-order.mm3 struct A { struct
4 A(); argument
5 A(const A &); field
6 ~A(); argument
13 // CHECK: (<{ %struct.A, i8*, %struct.A, i8* }>* inalloca) argument
14 void test_arc_order(A a, id __attribute__((ns_consumed)) b , A c, id __attribute__((ns_consumed)) d… argument
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.modifiers/
Dswap.pass.cpp21 struct A struct
25 A() : state_(0) {++count;} in A() argument
26 explicit A(int i) : state_(i) {++count;} in A() argument
27 A(const A& a) : state_(a.state_) {++count;} in A() argument
28 A& operator=(const A& a) {state_ = a.state_; return *this;} in operator =() argument
29 ~A() {--count;} in ~A() argument
/external/clang/test/CXX/temp/temp.res/temp.dep/temp.dep.type/
Dp1.cpp8 template<class T> struct A { struct
9 struct C {};
10 B<T>::C bc; // ok, B<T> is the current instantiation.
13 template<class T> struct A<A<T>> { struct
14 struct C {};
15 B<B<T>>::C bc; // ok, B<B<T>> is the current instantiation.
18 template<class T> struct A<A<A<T>>> { struct
19 struct C {};
20 B<B<T>>::C bc; // expected-error {{missing 'typename'}}
25 template<class T> struct A { struct
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
Dmake_shared.pass.cpp21 struct A struct
25 A(int i, char c) : int_(i), char_(c) {++count;} in A() function
26 A(const A& a) in A() function
29 ~A() {--count;} in ~A() argument
38 int A::count = 0; argument
Dallocate_shared.pass.cpp26 struct A struct
30 A(int i, char c) : int_(i), char_(c) {++count;} in A() argument
31 A(const A& a) in A() argument
34 ~A() {--count;} in ~A() argument
43 int A::count = 0; argument
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.special/
Dswap.pass.cpp21 struct A struct
25 A() : state_(0) {++count;} in A() argument
26 explicit A(int i) : state_(i) {++count;} in A() function
27 A(const A& a) : state_(a.state_) {++count;} in A() function
28 A& operator=(const A& a) {state_ = a.state_; return *this;} in operator =() argument
29 ~A() {--count;} in ~A() argument
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/
Dconstruct.pass.cpp23 struct A struct
26 A() {++A_constructed;} in A() argument
28 A(const A&) {++A_constructed;} in A() function
30 explicit A(int) {++A_constructed;} in A() argument
31 A(int, int*) {++A_constructed;} in A() argument
33 ~A() {--A_constructed;} in ~A() argument
/external/clang/lib/Frontend/
DCompilerInvocation.cpp84 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevel() local
104 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { in getOptimizationLevelSize() local
142 if (Arg *A = Args.getLastArg(OPT_analyzer_store)) { in ParseAnalyzerArgs() local
158 if (Arg *A = Args.getLastArg(OPT_analyzer_constraints)) { in ParseAnalyzerArgs() local
174 if (Arg *A = Args.getLastArg(OPT_analyzer_output)) { in ParseAnalyzerArgs() local
190 if (Arg *A = Args.getLastArg(OPT_analyzer_purge)) { in ParseAnalyzerArgs() local
206 if (Arg *A = Args.getLastArg(OPT_analyzer_inlining_mode)) { in ParseAnalyzerArgs() local
246 for (const Arg *A : in ParseAnalyzerArgs() local
260 for (const Arg *A : Args.filtered(OPT_analyzer_config)) { in ParseAnalyzerArgs() local
302 if (Arg *A = Args.getLastArg(OPT_mcode_model)) { in getCodeModel() local
[all …]
/external/clang/test/CXX/special/class.inhctor/
Dp4.cpp7 struct A { struct
9 A(X<0>) {} in A() argument
11 A(X<1>) {} in A() argument
13 A(X<2>) {} // expected-note {{declared private here}} in A() function
59 struct A { struct
60 constexpr A(int, float = 0) {} in A() argument
61 explicit A(int, int = 0) {} // expected-note {{constructor cannot be inherited}} in A() function
/external/clang/test/Misc/
Dmacro-backtrace.c4 #define M1(A, B) ((A) < (B)) argument
5 #define M2(A, B) M1(A, B) argument
6 #define M3(A, B) M2(A, B) argument
7 #define M4(A, B) M3(A, B) argument
8 #define M5(A, B) M4(A, B) argument
9 #define M6(A, B) M5(A, B) argument
10 #define M7(A, B) M6(A, B) argument
11 #define M8(A, B) M7(A, B) argument
12 #define M9(A, B) M8(A, B) argument
13 #define M10(A, B) M9(A, B) argument
[all …]

12345678910>>...116