Home
last modified time | relevance | path

Searched refs:B2 (Results 1 – 25 of 424) sorted by relevance

12345678910>>...17

/external/clang/test/SemaCXX/
Dwarn-enum-compare.cpp10 enum Baz {B1, B2, B3}; enumerator
14 enum Baz {B1, B2, B3}; enumerator
19 using name2::B2;
36 while (z == name1::B2); in test()
40 while (B1 == name1::B2); in test()
41 while (B2 == name2::B1); in test()
51 while (z == (name1::B2)); in test()
55 while ((B1) == (name1::B2)); in test()
56 while ((B2) == (name2::B1)); in test()
61 while (z == (name1::B2)); in test()
[all …]
Dnested-name-spec.cpp321 struct B2 { struct
328 enum E1 { B2 = 2 }; enumerator
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 '::'?…
385 C1::C2 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}}
[all …]
/external/clang/test/CXX/special/class.inhctor/
Dp7.cpp9 struct B2 { // expected-note 2{{candidate}} struct
10 B2(int); // expected-note {{candidate}}
12 struct D1 : B1, B2 { // expected-note 2{{candidate}}
14 using B2::B2; // expected-note 3{{inherited here}}
16 struct D2 : B1, B2 {
18 using B2::B2;
Dp3.cpp17 struct B2 { // expected-note 2{{candidate}} struct
18 explicit B2(int, int = 0, int = 0);
20 struct D2 : B2 { // expected-note 2{{candidate constructor}}
21 using B2::B2; // expected-note 2{{inherited here}}
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp15.cpp7 struct B2 { // expected-note 2{{candidate}} struct
8 B2(int); // expected-note {{candidate}}
11 struct D1 : B1, B2 { // expected-note 2{{candidate}}
13 using B2::B2; // expected-note 3{{inherited here}}
17 struct D2 : B1, B2 {
19 using B2::B2;
/external/clang/test/Layout/
Dms-x86-empty-virtual-base.cpp10 struct __declspec(align(8)) B2 { B2() {printf("B2 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; in B2() function
69 struct C : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
286 struct I : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
314 struct __declspec(align(32)) J : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
342 struct K : virtual D1, virtual B1, virtual B2, virtual B3, virtual B4 {
372 struct L : virtual B1, virtual D1, virtual B2, virtual B3, virtual B4 {
400 struct M : virtual B1, virtual B2, virtual D1, virtual B3, virtual B4 {
428 struct N : virtual C0, virtual B1, virtual D1, virtual B2, virtual B3, virtual B4 {
460 struct O : virtual C0, virtual B1, virtual B2, virtual D1, virtual B3, virtual B4 {
492 struct P : virtual B1, virtual C0, virtual D1, virtual B2, virtual B3, virtual B4 {
[all …]
Dms-x86-aligned-tail-padding.cpp16 struct B2 { struct
18 B2() : a(0xf00000B2) {} in B2() argument
72 struct A : B1, B0, B2, virtual V {
114 struct B : B2, B0, B1, virtual V {
181 struct D : B2, B0, virtual V {
332 B2 a;
Dms-x86-empty-nonvirtual-bases.cpp10 struct __declspec(align(8)) B2 { B2() {printf("B2 : %p\n", this);} }; in B2() struct
47 struct C : B0, B1, B2, B3, B4 {
130 struct G : B0, B1, B2, B3, B4 {
146 struct __declspec(align(32)) H : B0, B1, B2, B3, B4 {
Dms-x86-vfvb-alignment.cpp10 struct B2 : virtual B1 { int a; B2() : a(0xf00000B2) {} }; in B2() struct
45 struct B : A, B2 { int a; B() : a(0xf000000B) {} virtual void f() { printf("B"); } }; in B()
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()
/external/swiftshader/third_party/LLVM/unittests/Support/
DCasting.cpp73 extern const bar *B2;
76 const bar *const B4 = B2;
80 EXPECT_TRUE(isa<foo>(B2)); in TEST()
88 const foo *F3 = cast<foo>(B2); in TEST()
90 const foo *F4 = cast<foo>(B2); in TEST()
103 const foo *F11 = cast_or_null<foo>(B2); in TEST()
105 const foo *F12 = cast_or_null<foo>(B2); in TEST()
116 const foo *F1 = dyn_cast<foo>(B2); in TEST()
118 const foo *F2 = dyn_cast<foo>(B2); in TEST()
129 const foo *F1 = dyn_cast_or_null<foo>(B2); in TEST()
[all …]
/external/llvm/test/Transforms/BBVectorize/X86/
Dsimple-int.ll10 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
12 %X2 = fsub double %A2, %B2
16 %Z2 = fadd double %Y2, %B2
24 define double @test1a(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
26 %X2 = fsub double %A2, %B2
30 %Z2 = fadd double %Y2, %B2
38 define double @test2(double %A1, double %A2, double %B1, double %B2) {
40 %X2 = fsub double %A2, %B2
44 %Z2 = fadd double %Y2, %B2
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) {
7 %X2 = fsub double %A2, %B2
11 %Z2 = fadd double %Y2, %B2
24 define double @test1a(double %A1, double %A2, double %B1, double %B2) {
26 %X2 = fsub double %A2, %B2
30 %Z2 = fadd double %Y2, %B2
43 ; CHECK: %X1.v.i1.2 = insertelement <2 x double> %X1.v.i1.1, double %B2, i32 1
60 define double @test2(double %A1, double %A2, double %B1, double %B2) {
62 %X2 = fsub double %A2, %B2
66 %Z2 = fadd double %Y1, %B2
[all …]
/external/llvm/test/Transforms/BBVectorize/
Dsimple-int.ll22 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
24 %X2 = fsub double %A2, %B2
28 %Z2 = fadd double %Y2, %B2
33 ; CHECK: %X1.v.i1.2 = insertelement <2 x double> %X1.v.i1.1, double %B2, i32 1
48 define double @test1a(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
50 %X2 = fsub double %A2, %B2
54 %Z2 = fadd double %Y2, %B2
59 ; CHECK: %X1.v.i1.2 = insertelement <2 x double> %X1.v.i1.1, double %B2, i32 1
74 define double @test2(double %A1, double %A2, double %B1, double %B2) {
76 %X2 = fsub double %A2, %B2
[all …]
Dsimple.ll5 define double @test1(double %A1, double %A2, double %B1, double %B2) {
8 ; CHECK: %X1.v.i1.2 = insertelement <2 x double> %X1.v.i1.1, double %B2, i32 1
12 %X2 = fsub double %A2, %B2
18 %Z2 = fadd double %Y2, %B2
29 define double @test2(double %A1, double %A2, double %B1, double %B2) {
32 ; CHECK: %X1.v.i1.2 = insertelement <2 x double> %X1.v.i1.1, double %B2, i32 1
36 %X2 = fsub double %A2, %B2
42 %Z2 = fadd double %Y1, %B2
43 ; CHECK: %Z1.v.i1.1 = insertelement <2 x double> undef, double %B2, i32 0
55 define double @test3(double %A1, double %A2, double %B1, double %B2) {
[all …]
/external/clang/test/CodeGenCXX/
Dconst-init-cxx11.cpp139 struct B2 { struct
149 struct D : C, B2 {
163 extern constexpr int (D::*dc) = &B2::c;
177 extern constexpr int (B2::*bc) = (int(B2::*))&B2::c;
178 extern constexpr int (B2::*bd) = (int(B2::*))&D::d;
181 extern constexpr int (B2::*b2z) = (int(B2::*))&D::z;
193 extern constexpr void (D::*dh)() = &B2::h;
212 extern constexpr void (B2::*bh)() = (void(B2::*)())&B2::h;
213 extern constexpr void (B2::*bi)() = (void(B2::*)())&D::i;
218 extern constexpr void (B2::*b2l)() = (void(B2::*)())&D::l;
[all …]
Dcopy-assign-synthesis-1.cpp9 B() : B1(3.14), B2(3.15), auB2(3.16) {} in B()
11 float B2; 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 =()
/external/boringssl/src/crypto/cipher_extra/asm/
Dchacha20_poly1305_x86_64.pl87 my ($A0,$A1,$A2,$A3,$B0,$B1,$B2,$B3,$C0,$C1,$C2,$C3,$D0,$D1,$D2,$D3)=map("%xmm$_",(0..15));
203 movdqa $B0, $B2
247 paddd $state1_store, $B2
299 paddd $B2, $A2
316 pxor $C2, $B2
324 movdqa $B2, $C0
326 pslld \$32-$rot1, $B2
327 pxor $C0, $B2
342 palignr \$$s1, $B2, $B2
531 &xor_stream($A2, $B2, $C2, $D2, "4*16");
[all …]
/external/llvm/unittests/Support/
DCasting.cpp98 extern const bar *B2;
101 const bar *const B4 = B2;
105 EXPECT_TRUE(isa<foo>(B2)); in TEST()
113 const foo *F3 = cast<foo>(B2); in TEST()
115 const foo *F4 = cast<foo>(B2); in TEST()
129 const foo *F11 = cast_or_null<foo>(B2); in TEST()
131 const foo *F12 = cast_or_null<foo>(B2); in TEST()
142 const foo *F1 = dyn_cast<foo>(B2); in TEST()
144 const foo *F2 = dyn_cast<foo>(B2); in TEST()
156 const foo *F1 = dyn_cast_or_null<foo>(B2); in TEST()
[all …]
/external/clang/test/CXX/except/except.spec/
Dp5-virtual.cpp13 struct B2 : A struct
17 struct D : B1, B2
68 virtual void f5() throw(B1, B2, int);
69 virtual void f6() throw(B2, B2, int, float, char, double, bool);
/external/ply/ply/example/BASIC/
Dlinear.bas3 3 REM ::: A3*X1 + A4*X2 = B2
8 30 READ B1, B2
9 37 LET X1 = (B1*A4 - B2*A2) / D
10 42 LET X2 = (A1*B2 - A3*B1) / D
/external/swiftshader/third_party/LLVM/test/Transforms/Mem2Reg/
D2003-04-24-MultipleIdenticalSuccessors.ll8 br i1 %c1, label %Exit, label %B2
9 B2: ; preds = %0
12 Exit: ; preds = %B2, %B2, %0
/external/llvm/test/Transforms/Mem2Reg/
D2003-04-24-MultipleIdenticalSuccessors.ll8 br i1 %c1, label %Exit, label %B2
9 B2: ; preds = %0
12 Exit: ; preds = %B2, %B2, %0
/external/clang/test/CXX/special/class.init/class.inhctor.init/
Dp1.cpp8 struct B2 { struct
9 B2(double) {} in B2() function
27 struct D2 : B2 {
28 using B2::B2;
/external/harfbuzz_ng/src/
Dhb-ot-shape-complex-thai.cc194 B2, /* Strict descender */ enumerator
201 B2, /* DC */
202 B2, /* NOT_CONSONANT */
210 /*B0*/ {{NOP,B0}, {NOP,B2}, {NOP, B0}},
211 /*B1*/ {{NOP,B1}, {RD, B2}, {NOP, B1}},
212 /*B2*/ {{NOP,B2}, {SD, B2}, {NOP, B2}},
/external/clang/test/Analysis/
Dblocks.mm15 // CHECK-NEXT: [B2 (ENTRY)]
21 // CHECK-NEXT: Preds (1): B2
39 // CHECK-NEXT: [B2 (ENTRY)]
47 // CHECK-NEXT: Preds (1): B2
62 // CHECK-NEXT: [B2 (ENTRY)]
71 // CHECK-NEXT: Preds (1): B2

12345678910>>...17