Home
last modified time | relevance | path

Searched refs:B1 (Results 1 – 25 of 229) sorted by relevance

12345678910

/external/clang/test/Layout/
Dms-x86-lazy-empty-nonvirtual-base.cpp9 struct B1 { B1() { printf("B1 = %p\n", this); } }; in B1() struct
29 struct AA : B8, B1, virtual B0 {
61 struct AB : B8, B1, virtual B0 {
87 struct AC : B8, B1, virtual B0 {
113 struct AD : B8, B1, virtual B0 {
136 struct AA1 : B9, B1, virtual B0 {
164 struct AB1 : B9, B1, virtual B0 {
190 struct AC1 : B9, B1, virtual B0 {
216 struct AD1 : B9, B1, virtual B0 {
239 struct AA2 : B10, B1, virtual B0 {
[all …]
Dms-x86-empty-virtual-base.cpp9 struct __declspec(align(8)) B1 { B1() {printf("B1 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; in B1() struct
73 struct C : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
114 B1 b1;
152 struct E : virtual B0, virtual C0, virtual C1, virtual C2, virtual B1 {
186 struct F : virtual C0, virtual B0, virtual B1, virtual C1 {
216 struct G : virtual C0, virtual B0, virtual B1, D0, virtual C1 {
253 struct H : virtual C0, virtual B0, virtual B1, virtual D0, virtual C1 {
290 struct I : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
318 struct __declspec(align(32)) J : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
346 struct K : virtual D1, virtual B1, virtual B2, virtual B3, virtual B4 {
[all …]
Dms-x86-vfvb-sharing.cpp9 struct B1 { int a; B1() : a(0xf00000B1) { printf("B1 = %p\n", this); } }; in B1() argument
11 struct B3 : virtual B1 { B3() { printf("B3 = %p\n", this); } }; in B3()
12 struct B4 : virtual B1 { B4() { printf("B4 = %p\n", this); } virtual void g() { printf("B4"); } }; in B4()
14 struct A : B0, virtual B1 {
47 struct B : B2, B0, virtual B1 {
80 struct C : B3, B0, virtual B1 {
113 struct D : B4, B0, virtual B1 {
Dms-x86-empty-nonvirtual-bases.cpp9 struct __declspec(align(8)) B1 { B1() {printf("B1 : %p\n", this);} }; in B1() function
49 struct C : B0, B1, B2, B3, B4 {
74 B1 b1;
106 struct E : B0, C0, C1, C2, B1 {
125 struct F : C0, B0, B1, C1 {
142 struct G : B0, B1, B2, B3, B4 {
158 struct __declspec(align(32)) H : B0, B1, B2, B3, B4 {
Dms-x86-vfvb-alignment.cpp9 struct B1 { char a; B1() : a(0xB1) {} }; in B1() argument
10 struct B2 : virtual B1 { int a; B2() : a(0xf00000B2) {} }; in B2()
16 struct A : B0, virtual B1 { __declspec(align(16)) int a; A() : a(0xf000000A) {} virtual void f() { … in A()
198 struct G : B2, B6, virtual B1 { int a; G() : a(0xf0000010) {} }; in G()
229 struct H : B6, B2, virtual B1 { int a; H() : a(0xf0000011) {} }; in H()
258 struct I : B0, virtual B1 { int a; int a1; __declspec(align(16)) int a2; I() : a(0xf0000011), a1(0x… in I()
285 struct J : B0, B3, virtual B1 { int a; int a1; J() : a(0xf0000012), a1(0xf0000012) {} }; in J()
/external/clang/test/CXX/special/class.inhctor/
Delsewhere.cpp8 struct B1 { struct
9 B1(int);
12 using B1::B1; // expected-error {{using declaration cannot refer to class member}}
18 struct I1 : B1 {
19 using B1::B1; // expected-note {{previous using declaration}}
20 using B1::B1; // expected-error {{redeclaration of using decl}}
30 using B1::B1; // expected-error {{'B1' is not a direct base of 'D1', cannot inherit constructors}}
64 G<B1> g(123);
Dp7.cpp4 struct B1 { struct
5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}}
10 struct D1 : B1, B2 {
11 using B1::B1; // expected-note {{inherited here}}
14 struct D2 : B1, B2 {
15 using B1::B1;
23 template<typename T> struct B4 : B3<T>, B1 {
26 using B1::B1; // expected-error {{already inherited}}
Dp3.cpp3 struct B1 { struct
4 B1(int);
5 B1(int, int);
7 struct D1 : B1 {
8 using B1::B1;
32 template<typename T> struct T1 : B1 {
33 using B1::B1;
/external/clang/test/SemaCXX/
Dnested-name-spec.cpp320 struct B1 { struct
327 struct B1 { struct
346 int g : B1::B2;
349 int g : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
361 int f(int xx[B1::B3 ? C2::N1 : B1::B2]);
364 …int f(int xx[B1::B3 ? C2::N1 : B1:B2]); // expected-error{{unexpected ':' in nested name specifie…
367 …int f(int xx[B1:B3 ? C2::N1 : B1::B2]); // expected-error{{unexpected ':' in nested name specifie…
372 C1::C2 m1 : B1::B2;
375 …C1::C2 m1 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?…
382 B1::E1 : N;
[all …]
Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enumerator
14 enum Baz {B1, B2, B3}; enumerator
18 using name1::B1;
40 while (B1 == name1::B2); in test()
41 while (B2 == name2::B1); in test()
55 while ((B1) == (name1::B2)); in test()
56 while ((B2) == (name2::B1)); in test()
65 while ((((((B1))))) == (((name1::B2)))); in test()
66 while (B2 == ((((((name2::B1))))))); in test()
68 …while (B1 == B2); // expected-warning {{comparison of two values with different enumeration types… in test()
[all …]
Ddefault-assignment-operator.cpp61 class B1 { class
63 B1();
64 B1 &operator = (B1 b);
67 class D1 : B1 {};
/external/clang/test/CodeGenCXX/
Dconst-init-cxx11.cpp134 struct B1 { struct
144 struct C : B1 {
161 extern constexpr int (D::*da) = &B1::a;
175 extern constexpr int (B1::*ba) = (int(B1::*))&B1::a;
176 extern constexpr int (B1::*bb) = (int(B1::*))&C::b;
179 extern constexpr int (B1::*be) = (int(B1::*))&C::e;
180 extern constexpr int (B1::*b1z) = (int(B1::*))&D::z;
192 extern constexpr void (D::*dg)() = &B1::g;
210 extern constexpr void (B1::*bf)() = (void(B1::*)())&C::f;
211 extern constexpr void (B1::*bg)() = (void(B1::*)())&B1::g;
[all …]
Dapple-kext-indirect-virtual-dtor-call.cpp5 struct B1 { struct
6 virtual ~B1();
9 B1::~B1() {} in ~B1()
11 void DELETE(B1 *pb1) { in DELETE()
12 pb1->B1::~B1(); in DELETE()
Dptr-to-member-function.cpp48 struct B1 { struct
51 B1(int i) : pmf(&A::foo), im(i) { in B1() argument
62 B1 b = B1(1); in main() argument
63 B1 c = B1(2); in main()
Dcopy-assign-synthesis-1.cpp9 B() : B1(3.14), B2(3.15), auB2(3.16) {} in B()
10 float B1; member
13 printf("B1 = %f B2 = %f auB1 = %f\n", B1, B2, auB1); in pr()
16 B& operator=(const B& arg) { B1 = arg.B1; B2 = arg.B2; in operator =()
45 printf("arr_b[%d][%d] = %f\n", i,j,arr_b[i][j].B1); in pr()
/external/clang/test/CXX/except/except.spec/
Dp5-pointers.cpp9 struct B1 : A struct
17 struct D : B1, B2
29 void s4() throw(B1);
33 void (*s8())() throw(B1); // s8 returns a pointer to function with spec
34 void s9(void (*)() throw(B1)); // s9 takes pointer to function with spec
58 void (*t6)() throw(B1); in fnptrs()
65 void (*(*t7)())() throw(B1) = &s8; // valid in fnptrs()
68 void (*t10)(void (*)() throw(B1)) = &s9; // valid in fnptrs()
Dp5-virtual.cpp9 struct B1 : A struct
17 struct D : B1, B2
51 virtual void g4() throw(B1); // expected-note {{overridden virtual function is here}}
67 virtual void f4() throw(B1);
68 virtual void f5() throw(B1, B2, int);
/external/llvm/test/Transforms/BBVectorize/X86/
Dsimple-int.ll10 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
11 %X1 = fsub double %A1, %B1
15 %Z1 = fadd double %Y1, %B1
24 define double @test1a(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
25 %X1 = fsub double %A1, %B1
29 %Z1 = fadd double %Y1, %B1
38 define double @test2(double %A1, double %A2, double %B1, double %B2) {
39 %X1 = fsub double %A1, %B1
43 %Z1 = fadd double %Y1, %B1
52 define double @test3(double %A1, double %A2, double %B1, double %B2, i32 %P) {
[all …]
Dsimple.ll5 define double @test1(double %A1, double %A2, double %B1, double %B2) {
6 %X1 = fsub double %A1, %B1
10 %Z1 = fadd double %Y1, %B1
24 define double @test1a(double %A1, double %A2, double %B1, double %B2) {
25 %X1 = fsub double %A1, %B1
29 %Z1 = fadd double %Y1, %B1
42 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
60 define double @test2(double %A1, double %A2, double %B1, double %B2) {
61 %X1 = fsub double %A1, %B1
65 %Z1 = fadd double %Y2, %B1
[all …]
/external/llvm/test/Transforms/BBVectorize/
Dsimple-int.ll22 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
23 %X1 = fsub double %A1, %B1
27 %Z1 = fadd double %Y1, %B1
32 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
48 define double @test1a(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
49 %X1 = fsub double %A1, %B1
53 %Z1 = fadd double %Y1, %B1
58 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
74 define double @test2(double %A1, double %A2, double %B1, double %B2) {
75 %X1 = fsub double %A1, %B1
[all …]
Dsimple.ll5 define double @test1(double %A1, double %A2, double %B1, double %B2) {
7 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
11 %X1 = fsub double %A1, %B1
17 %Z1 = fadd double %Y1, %B1
29 define double @test2(double %A1, double %A2, double %B1, double %B2) {
31 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
35 %X1 = fsub double %A1, %B1
41 %Z1 = fadd double %Y2, %B1
44 ; CHECK: %Z1.v.i1.2 = insertelement <2 x double> %Z1.v.i1.1, double %B1, i32 1
55 define double @test3(double %A1, double %A2, double %B1, double %B2) {
[all …]
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h644 RhsPacket B_0, B1, B2, B3;
650 traits.loadRhs(&blB[1*RhsProgress], B1);
657 traits.madd(A0,B1,C1,T0);
658 traits.madd(A1,B1,C5,B1);
659 traits.loadRhs(&blB[5*RhsProgress], B1);
671 traits.madd(A0,B1,C1,T0);
672 traits.madd(A1,B1,C5,B1);
673 traits.loadRhs(&blB[9*RhsProgress], B1);
686 traits.madd(A0,B1,C1,T0);
687 traits.madd(A1,B1,C5,B1);
[all …]
/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
Drebind.pass.cpp27 template <class T> struct B1 {}; struct
33 template <class U> using rebind = B1<U>;
35 template <class U> struct rebind {typedef B1<U> other;};
60 …static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), ""… in main()
65 …static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>::other, B1<double> >::val… in main()
/external/libcxx/test/std/utilities/meta/meta.rel/
Dis_base_of.pass.cpp32 struct B1 : B {}; struct
34 struct D : private B1, private B2 {};
39 test_is_base_of<B1, D>(); in main()
41 test_is_base_of<B, B1>(); in main()
/external/boringssl/src/crypto/bn/asm/
Drsaz-avx2.pl131 my $B1="%ymm10";
254 vpbroadcastq 32*0-128($ap), $B1
272 vpmuludq 32*0-128($ap), $B1, $ACC0
275 vpmuludq $B1, $ACC1, $ACC1
277 vpmuludq $B1, $ACC2, $ACC2
279 vpmuludq $B1, $ACC3, $ACC3
281 vpmuludq $B1, $ACC4, $ACC4
283 vpmuludq $B1, $ACC5, $ACC5
285 vpmuludq $B1, $ACC6, $ACC6
287 vpmuludq $B1, $ACC7, $ACC7
[all …]

12345678910