Home
last modified time | relevance | path

Searched +defs:x +defs:B (Results 1 – 25 of 1250) sorted by relevance

12345678910>>...50

/aosp_15_r20/external/clang/test/CodeGen/
H A Dsse-builtins.c10 __m128 test_mm_add_ps(__m128 A, __m128 B) { in test_mm_add_ps()
16 __m128 test_mm_add_ss(__m128 A, __m128 B) { in test_mm_add_ss()
25 __m128 test_mm_and_ps(__m128 A, __m128 B) { in test_mm_and_ps()
31 __m128 test_mm_andnot_ps(__m128 A, __m128 B) { in test_mm_andnot_ps()
222 int test_mm_comieq_ss(__m128 A, __m128 B) { in test_mm_comieq_ss()
228 int test_mm_comige_ss(__m128 A, __m128 B) { in test_mm_comige_ss()
234 int test_mm_comigt_ss(__m128 A, __m128 B) { in test_mm_comigt_ss()
240 int test_mm_comile_ss(__m128 A, __m128 B) { in test_mm_comile_ss()
246 int test_mm_comilt_ss(__m128 A, __m128 B) { in test_mm_comilt_ss()
252 int test_mm_comineq_ss(__m128 A, __m128 B) { in test_mm_comineq_ss()
[all …]
H A Davx-builtins.c11 __m256d test_mm256_add_pd(__m256d A, __m256d B) { in test_mm256_add_pd()
17 __m256 test_mm256_add_ps(__m256 A, __m256 B) { in test_mm256_add_ps()
23 __m256d test_mm256_addsub_pd(__m256d A, __m256d B) { in test_mm256_addsub_pd()
29 __m256 test_mm256_addsub_ps(__m256 A, __m256 B) { in test_mm256_addsub_ps()
35 __m256d test_mm256_and_pd(__m256d A, __m256d B) { in test_mm256_and_pd()
41 __m256 test_mm256_and_ps(__m256 A, __m256 B) { in test_mm256_and_ps()
47 __m256d test_mm256_andnot_pd(__m256d A, __m256d B) { in test_mm256_andnot_pd()
54 __m256 test_mm256_andnot_ps(__m256 A, __m256 B) { in test_mm256_andnot_ps()
61 __m256d test_mm256_blend_pd(__m256d A, __m256d B) { in test_mm256_blend_pd()
67 __m256 test_mm256_blend_ps(__m256 A, __m256 B) { in test_mm256_blend_ps()
[all …]
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dms-lookup-template-base-classes.cpp12 class B : public A<T> { class
21 template class B<int>; // expected-note {{requested here}} variable
22 template class B<char>; // expected-note {{requested here}} variable
64 class B : public A<T> { class
71 template class B<int>; variable
88 class B : public A<T> { class
95 template class B<int>; // expected-note {{requested here}} variable
111 class B : public A<T> { class
130 class B { class
174 class B {}; class
[all …]
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dclass-layout.cpp14 struct B : A { struct
18 SA(1, sizeof(B) == 12); argument
66 class B : A { bool iv0 : 1; }; class
81 struct B : A { virtual void b(); }; struct
96 struct B : A { virtual void b(); }; struct
112 long long x; member
130 long long x; member
147 long long x; member
168 long long x; member
189 long long x; member
[all …]
H A Dabstract.cpp104 bar x; variable
114 class B : public A { class
139 struct B : public A { struct
155 template<typename T> struct B : public A { struct
163 C x; variable
169 struct B : A {}; struct
170 B x; variable
184 struct B : A { struct
215 A x; // expected-error {{field has incomplete type}} member
219 struct B { // expected-note {{not complete until}} struct
[all …]
H A Duninitialized.cpp49 int x = x++; // expected-warning {{variable 'x' is uninitialized when used within its own initializ… variable
83 …int x = x++; // expected-warning {{variable 'x' is uninitialized when used within its own initiali… in test_stuff() local
117 …int x = x++; // expected-warning {{variable 'x' is uninitialized when used within its own initiali… in test_stuff() local
140 int x; member
172 int x; member
219 int set(int x) { num = x; return num; } in set()
224 A(int x) {} in A()
225 A(int *x) {} in A()
236 A getA(int x) { return A(); } in getA()
242 void setupA(bool x) { in setupA()
[all …]
/aosp_15_r20/external/clang/test/CXX/class.access/class.protected/
H A Dp1.cpp5 protected: int x; // expected-note 3 {{declared}} \ member in test0::A
10 class B : public A { class
37 protected: int x; member in test1::A
41 class B : public A { class
71 protected: int x; // expected-note 3 {{can only access this member on an object of type}} member in test2::A
75 class B : public A { class
106 …protected: int x; //expected-note {{declared protected}} // expected-note {{can only access this m… member in test3::A
110 class B : public A { class
141 …protected: int x; // expected-note 2{{declared protected here}} expected-note{{member is declared … member in test4::A
145 class B : public A { class
[all …]
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dconstructors.cpp3 struct Member { int x; Member(); Member(int); Member(const Member &); }; member
4 struct VBase { int x; VBase(); VBase(int); VBase(const VBase &); }; member
8 int x; member
39 struct B : A { struct
44 B::B(struct Undeclared &ref) : A(ref), mem(1) {} in B() argument
63 C::C(int x) : A(ValueClass(x, x+1)), mem(x * x) {} in C()
81 D::D(int x, ...) : A(ValueClass(x, x+1)), mem(x*x) {} in D()
96 struct B : virtual A { int x; }; argument
106 struct B { B(); int x; A a[0]; }; argument
107 B::B() {} in B() function in test1::B
H A Ddestructors.cpp18 struct B : A { struct
68 struct B : A { struct
101 struct B : Base, virtual VBase { struct
108 // CHECK2-LABEL: define void @_ZN5test01BD2Ev(%"struct.test0::B"* %this, i8** %vtt) unnamed_addr
126 struct B { ~B(); }; // non-trivial destructor struct
128 struct NonEmpty { int x; }; // trivial destructor, non-empty member
155 struct S : A { ~S(); int x; }; member
159 struct T : A { ~T(); B x; }; member
171 struct B : A { ~B(); }; struct
181 struct B { virtual ~B(); }; struct
[all …]
H A Dpointers-to-data-members.cpp6 struct B { int b; }; argument
49 struct B { struct
56 … = global {{%.*}} <{ %"struct.ZeroInit::A" { i64 -1, i32 0 }, %"struct.ZeroInit::B" { [10 x %"stru…
140 struct B : virtual A { }; struct
170 bool &f(X &x, bool X::*member) { in f()
190 struct B : virtual A { int A::*B_p; }; struct
194 …est4::D" { %"struct.test4::C.base" zeroinitializer, i32* null, %"struct.test4::B.base" { i32 (...)…
202 char x[16]; member
203 } x; variable
209 struct X { int x; X(const X&); }; member
[all …]
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp22 int x; member
79 struct B : virtual V3 { struct
102 B() { use_somewhere_else(this); } in B() function
148 int x; member
261 struct B : virtual simple::A { struct
294 int x; member
305 int x; member
340 int x; member
429 struct B : virtual A { struct
441 …// CHECK-LABEL: VFTable for 'pr19408::A' in 'pr19408::B' in 'pr19408::C' in 'pr19408::D' (1 entry).
[all …]
H A Dmicrosoft-abi-vtables-multiple-nonvirtual-inheritance-no-thunks.cpp10 struct B { struct
32 } x; variable
42 struct B { struct
72 struct B { struct
114 } x; variable
124 struct B { struct
149 } x; variable
159 struct B { struct
192 struct B { struct
227 struct B : A { struct
[all …]
H A Dtemporaries.cpp14 struct B { int n; }; struct
32 struct B { virtual ~B(); }; struct
69 struct B { struct
180 struct B { struct
181 int a1;
182 int a2;
187 B::B() in B() function in PR5077::B
307 struct B { operator A(); }; struct
343 struct B { struct
376 struct B { int i; ~B(); }; argument
[all …]
H A Deh.cpp80 try { throw A(); } catch (A &x) {} in test() local
194 } catch (int x) { in A() local
214 struct B { int x; }; struct
300 A x; in test() local
324 void test0(int x) { in test0()
337 } catch (int x) { in test0() local
342 void test1(int x) { in test1()
348 } catch (int x) {} in test1() local
355 struct B { ~B(); }; struct
365 } catch (int x) { in foo() local
[all …]
H A Dnrvo.cpp23 X x; in test0() local
34 X test1(bool B) { in test1()
37 X x; in test1() local
48 X test2(bool B) { in test2()
51 X x; in test2() local
129 X test3(bool B) { in test3()
139 X x; in test3() local
146 X test4(bool B) { in test4()
149 X x; in test4() local
165 } catch (X x) { in test5() local
[all …]
/aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp16 Num x = 0; in operator *() local
41 template <class T> class B { class
53 Num<int> x = 3; in calc2() local
66 template <typename T> bool has(const A &x) { in has()
69 template <typename T> bool hasnot(const A &x) { in hasnot()
128 template <class T> class B { class
134 template class B<int>; variable
139 template <class T> class B { class
142 template class B<int>; variable
160 int x; // expected-note {{declared private here}} member in test7::A
[all …]
/aosp_15_r20/external/libaom/tools/gop_bitrate/python/
H A Dbitrate_accuracy.py6 def lstsq_solution(A, B): argument
14 def pinv_solution(A, mv, B): argument
24 def minimize_percentage_error_model_a(A, B): argument
49 divide = lambda x, y : 0 if y == 0 else x / y argument
60 def average_lstsq_error(A, B, x): argument
77 def average_percent_error_model_a(A, B, x): argument
93 def average_percent_error_model_b(A, M, B, x): argument
108 def average_squared_error_model_a(A, B, x): argument
123 def average_squared_error_model_b(A, M, B, x): argument
/aosp_15_r20/external/clang/test/CXX/drs/
H A Ddr5xx.cpp19 class A::B {}; class in dr500::A
81 int A::x = y; member in dr514::A
95 struct B { void f() { int k = sizeof(A::a); } }; in f() argument
133 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) argument
234 extern struct { int x; } a; // FIXME: We should reject this, per dr389. member
235 static struct { int x; } b; member
236 extern "C" struct { int x; } c; member
237 namespace { extern struct { int x; } d; } member
238 typedef struct { int x; } *P; member
259 struct B { typename T::error error; }; argument
[all …]
H A Ddr1xx.cpp8 template<const char (&)[4]> struct B {}; // expected-note 0-1{{declared here}} struct
30 namespace B { namespace
60 struct B { typedef int X; }; struct
61 B::X x; // expected-error {{missing 'typename'}} member
62 struct C : B { X x; }; // expected-error {{unknown type name}} member
64 template<> struct A<int>::B { int X; }; struct in dr108::A
69 template<typename T> struct B : T { struct
71 void g() { this->f<int>(123); } // expected-error {{use 'template'}} in g()
77 …struct B : A { B(); }; // expected-note +{{would lose const qualifier}} expected-note {{requires 0… struct
117 struct B : A { struct
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/core/tests/
H A Doption.rs9 let x: Box<_> = Box::new(0); in test_get_ptr() localVariable
20 let x = "test".to_string(); in test_get_str() localVariable
51 let x = r(i.clone()); in test_get_resource() localVariable
61 let x = Some(()); in test_option_dance() localVariable
82 let x: Option<isize> = Some(1); in test_and() localVariable
86 let x: Option<isize> = None; in test_and() localVariable
93 const B: Option<isize> = FOO.and(None); in test_and() constant
115 let x: Option<isize> = Some(1); in test_and_then() localVariable
119 let x: Option<isize> = None; in test_and_then() localVariable
126 const B: Option<isize> = FOO.and_then(none); in test_and_then() constant
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/core/tests/
H A Doption.rs9 let x: Box<_> = Box::new(0); in test_get_ptr() localVariable
20 let x = "test".to_string(); in test_get_str() localVariable
51 let x = r(i.clone()); in test_get_resource() localVariable
61 let x = Some(()); in test_option_dance() localVariable
82 let x: Option<isize> = Some(1); in test_and() localVariable
86 let x: Option<isize> = None; in test_and() localVariable
93 const B: Option<isize> = FOO.and(None); in test_and() constant
115 let x: Option<isize> = Some(1); in test_and_then() localVariable
119 let x: Option<isize> = None; in test_and_then() localVariable
126 const B: Option<isize> = FOO.and_then(none); in test_and_then() constant
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/core/tests/
H A Doption.rs9 let x: Box<_> = Box::new(0); in test_get_ptr() localVariable
20 let x = "test".to_string(); in test_get_str() localVariable
51 let x = r(i.clone()); in test_get_resource() localVariable
61 let x = Some(()); in test_option_dance() localVariable
82 let x: Option<isize> = Some(1); in test_and() localVariable
86 let x: Option<isize> = None; in test_and() localVariable
93 const B: Option<isize> = FOO.and(None); in test_and() constant
115 let x: Option<isize> = Some(1); in test_and_then() localVariable
119 let x: Option<isize> = None; in test_and_then() localVariable
126 const B: Option<isize> = FOO.and_then(none); in test_and_then() constant
[all …]
/aosp_15_r20/external/clang/test/CXX/class.access/class.friend/
H A Dp1.cpp25 X x; in test1() local
49 X x; in test() local
153 class A { protected: int x; }; // expected-note {{declared protected here}} member in test3::A
155 class B : public A { class
169 class A { protected: int x; }; member in test3a::A
171 class B : public A { class
203 private: int x; member in test5::ns::A
208 class B { class
218 struct B { struct
263 static const I x = 0; // expected-note {{implicitly declared private here}} member in test8::A
[all …]
/aosp_15_r20/external/clang/test/Parser/
H A Dswitch-recovery.cpp5 struct B { struct
6 void foo(int b) { in foo()
21 void test2() { in test2()
22 enum X { Xa, Xb } x; in test2() local
35 int test3(int i) { in test3()
88 enum foo { A, B, C}; enumerator
89 int test8( foo x ) { in test8()
98 void test9(int x) { // expected-note {{'x' declared here}} in test9()
117 void test10(int x) { in test10()
144 void test12(int x) { in test12()
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/math/big/
Dint_test.go30 z, x, y *Int member
133 func mulBytes(x, y []byte) []byte { argument
265 func BenchmarkBinomial(b *testing.B) {
416 func checkQuo(x, y []byte) bool { argument
495 func BenchmarkQuoRem(b *testing.B) {
664 func BenchmarkExp(b *testing.B) {
674 func BenchmarkExpMont(b *testing.B) {
709 func BenchmarkExp2(b *testing.B) {
822 func testGcd(t *testing.T, d, x, y, a, b *Int) { argument
1286 func testBitFun(t *testing.T, msg string, f bitFun, x, y *Int, exp string) { argument
[all …]

12345678910>>...50