Searched defs:B3 (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dalignment-of-derived-class.cpp22 struct B3 : public A { struct in inherits:A
25 static_assert(__alignof(B3) == 16, "B3 should be aligned to 16 bytes");
H A Dinherit.cpp8 class B3 : virtual virtual A { }; // expected-error{{duplicate 'virtual' in base specifier}} class in inherits:A
H A Dconversion-delete-expr.cpp46 struct B3 { struct
54 struct D3 : A3, B3 {
H A Dwarn-overloaded-virtual.cpp24 struct B3 { struct
29 struct S3 : public B3 {
30 using B3::foo;
H A Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enumerator in enum:name1::Baz
14 enum Baz {B1, B2, B3}; enumerator in enum:name2::Baz
28 Baz z = name1::B3;
69 while (name1::B2 == name2::B3); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
73 while (name1::B2 == (name2::B3)); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
77 while ((name1::B2) == (((name2::B3)))); // expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and 'name2::Baz')}}
H A Dcxx1y-variable-templates_in_class.cpp48 class B3 { class in namespace:out_of_line
52 template<typename T, typename T0> CONST T B3::right;
53 template<typename T> CONST T B3::right<T,int>;
/external/clang/test/CXX/special/class.inhctor/
H A Dp7.cpp20 template<typename T> struct B3 { struct
21 B3(T); // expected-note {{previous constructor}}
23 template<typename T> struct B4 : B3<T>, B1 {
25 using B3<T>::B3; // expected-note {{inherited here}}
H A Dp3.cpp24 struct B3 { struct
25 B3(void*); // expected-note {{inherited from here}}
27 struct D3 : B3 { // expected-note 2 {{candidate constructor}}
28 using B3::B3; // expected-note {{candidate constructor (inherited)}}
/external/clang/test/Layout/
H A Dms-x86-vfvb-sharing.cpp11 struct B3 : virtual B1 { B3() { printf("B3 = %p\n", this); } }; function in struct:B3
80 struct C : B3, B0, virtual B1 {
90 // CHECK-NEXT: 16 | struct B3 (base)
91 // CHECK-NEXT: 16 | (B3 vbtable pointer)
103 // CHECK-X64-NEXT: 16 | struct B3 (base)
104 // CHECK-X64-NEXT: 16 | (B3 vbtable pointer)
H A Dms-x86-empty-nonvirtual-bases.cpp11 struct __declspec(align(8)) B3 { B3() {printf("B3 : %p\n", this);} }; function
47 struct C : B0, B1, B2, B3, B4 {
61 // CHECK-NEXT: 24 | struct B3 (base) (empty)
130 struct G : B0, B1, B2, B3, B4 {
140 // CHECK-NEXT: 24 | struct B3 (base) (empty)
146 struct __declspec(align(32)) H : B0, B1, B2, B3, B4 { variable
156 // CHECK-NEXT: 24 | struct B3 (base) (empty)
H A Dms-x86-vfvb-alignment.cpp11 struct B3 { __declspec(align(16)) int a; B3() : a(0xf00000B3) {} }; function in struct:B3
12 struct B4 : virtual B3 { int a; B4() : a(0xf00000B4) {} };
93 // CHECK-NEXT: 32 | struct B3 (virtual base)
106 // CHECK-X64-NEXT: 48 | struct B3 (virtual base)
122 // CHECK-NEXT: 48 | struct B3 (virtual base)
135 // CHECK-X64-NEXT: 64 | struct B3 (virtual base)
146 // CHECK-NEXT: 16 | struct B3 (virtual base)
161 // CHECK-X64-NEXT: 16 | struct B3 (virtual base)
173 struct F : B3, virtua
[all...]
H A Dms-x86-aligned-tail-padding.cpp20 struct __declspec(align(16)) B3 {
23 B3() : a(0xf00000B3), a1(0xf00000B3f00000B3ll) {} function
211 struct E : B3, B0, virtual V {
219 // CHECK-NEXT: 0 | struct B3 (base)
233 // CHECK-X64-NEXT: 0 | struct B3 (base)
H A Dms-x86-empty-virtual-base.cpp11 struct __declspec(align(8)) B3 { B3() {printf("B3 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function
69 struct C : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
85 // CHECK-NEXT: 32 | struct B3 (virtual base) (empty)
100 // CHECK-X64-NEXT: 40 | struct B3 (virtual base) (empty)
286 struct I : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
298 // CHECK-NEXT: 136 | struct B3 (virtual base) (empty)
309 // CHECK-X64-NEXT: 136 | struct B3 (virtual base) (empty)
314 struct __declspec(align(32)) J : virtual B0, virtual B1, virtual B2, virtual B3, virtua variable
[all...]
H A Dms-x86-lazy-empty-nonvirtual-base.cpp11 struct B3 { B3() { printf("B3 = %p\n", this); } }; function in struct:B3
23 struct __declspec(align(2)) B3X { B3X() { printf("B3 = %p\n", this); } };
468 struct C : B1, B2, B3, virtual B0 {
478 // CHECK-NEXT: 8 | struct B3 (base) (empty)
489 // CHECK-X64-NEXT: 16 | struct B3 (base) (empty)
496 struct D : B1, B2, B3, B4, B5, virtual B0 {
507 // CHECK-NEXT: 2 | struct B3 (base) (empty)
521 // CHECK-X64-NEXT: 2 | struct B3 (bas
[all...]
/external/clang/test/SemaTemplate/
H A Ddependent-base-member-init.cpp20 template <class C> class B3 { class
22 B3() : x(1,2) {} function in class:B3
/external/v8/test/unittests/wasm/
H A Dcontrol-transfer-unittest.cc25 #define B3(a, b, c) kExprBlock, a, b, c, kExprEnd macro
H A Dast-decoder-unittest.cc23 #define B3(a, b, c) kExprBlock, a, b, c, kExprEnd macro
459 sigs.i_i(), B3(WASM_SET_LOCAL(0, WASM_ZERO), WASM_SET_LOCAL(0, WASM_ZERO),
469 sigs.v_i(), B3(WASM_GET_LOCAL(0), WASM_GET_LOCAL(0), WASM_GET_LOCAL(0)));
940 VERIFY(B3(WASM_NOP, WASM_NOP, WASM_NOP));
947 VERIFY(B3(WASM_NOP, // --
1534 EXPECT_FAILURE_INLINE(sigs.i_i(), B3(WASM_BRV_IF_ZERO(0, WASM_I8(8)),
1537 EXPECT_FAILURE_INLINE(sigs.i_i(), B3(WASM_BRV_IF_ZERO(0, WASM_I8(9)),
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp141 LazyCallGraph::Node &B3 = *I++; local
142 EXPECT_EQ("b3", B3.getFunction().getName());
183 EXPECT_EQ(B3.end(), std::next(B3.begin()));
184 EXPECT_EQ("b1", B3.begin()->getFunction().getName());
458 LazyCallGraph::Node &B3 = *CG.lookup(lookupFunction(*M, "b3")); local
472 ASSERT_EQ(&BC, CG.lookupSCC(B3));
502 EXPECT_EQ(&BC, CG.lookupSCC(B3));
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp83 struct B3 { struct
90 template struct CopyAssign<B3>;
91 template struct MoveAssign<B3>;
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp54 struct B3 { struct
55 B3();
58 B3 b3; // expected-error {{deleted function}}
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DAnalyzerTest.java327 public static class B3 extends A {}; class in class:AnalyzerTest.Dummy
328 public static class C31 extends B3 implements Serializable {};
/external/llvm/unittests/Support/
H A DCasting.cpp100 const bar &B3 = B1; member in namespace:__anon13218
106 EXPECT_TRUE(isa<foo>(B3));
117 const foo &F5 = cast<foo>(B3);
170 //foo &F21 = cast<foo>(B3); // Yields const foo&
173 //const foo &F24 = cast_or_null<foo>(B3);
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c12 B3, enumerator in enum:B
/external/webp/src/dsp/
H A Drescaler_sse2.c205 const __m128i B3 = _mm_mul_epu32(*A3, *mult); local
209 const __m128i C3 = _mm_add_epi64(B3, rounder);
258 __m128i A0, A1, A2, A3, B0, B1, B2, B3; local
260 LoadDispatchAndMult(irow + x_out, &mB, &B0, &B1, &B2, &B3);
265 const __m128i C3 = _mm_add_epi64(A3, B3);
304 __m128i A0, A1, A2, A3, B0, B1, B2, B3; local
306 LoadDispatchAndMult(frow + x_out, &mult_y, &B0, &B1, &B2, &B3);
311 const __m128i C3 = _mm_add_epi64(B3, rounder);
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
H A DbtQuaternion.h234 B1 = B1 * B2; // A3 *= B3
248 float32x4_t A0, A1, B1, A2, B2, A3, B3;
273 B3 = vcombine_f32(vQ2yz, vQ2xz); // Y Z x z
277 A3 = vmulq_f32(A3, B3); // A3 *= B3
610 B1 = B1 * B2; // A3 *= B3
627 float32x4_t A0, A1, B1, A2, B2, A3, B3;
652 B3 = vcombine_f32(vQ2yz, vQ2xz); // Y Z x z
656 A3 = vmulq_f32(A3, B3); // A3 *= B3
683 __m128 A1, B1, A2, B2, A3, B3; local
766 __m128 A1, B1, A2, B2, A3, B3; local
[all...]

Completed in 1392 milliseconds

12