Home
last modified time | relevance | path

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

12345678

/external/clang/test/CXX/special/class.inhctor/
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}}
Delsewhere.cpp8 struct B1 { struct
9 B1(int);
12 using B1::B1; // expected-error {{using declaration can not 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', can not inherit constructors}}
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/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.cpp11 struct B1 { struct
12 virtual ~B1();
15 B1::~B1() {} in ~B1()
17 void DELETE(B1 *pb1) { in DELETE()
18 pb1->B1::~B1(); in DELETE()
Dptr-to-member-function.cpp49 struct B1 { struct
52 B1(int i) : pmf(&A::foo), im(i) { in B1() function
63 B1 b = B1(1); in main() argument
64 B1 c = B1(2); in main()
Dcopy-assign-synthesis-1.cpp10 B() : B1(3.14), B2(3.15), auB2(3.16) {} in B()
11 float B1; member
14 printf("B1 = %f B2 = %f auB1 = %f\n", B1, B2, auB1); in pr()
17 B& operator=(const B& arg) { B1 = arg.B1; B2 = arg.B2; in operator =()
46 printf("arr_b[%d][%d] = %f\n", i,j,arr_b[i][j].B1); in pr()
Dvtt-layout.cpp29 class B1 { int i; }; class
31 class V2 : public B1, public B2, public virtual V1 { int i; };
48 class B1 { int i; }; class
50 class V2 : public B1, public B2, public virtual V1 { int i; };
Dptr-to-datamember.cpp21 struct B1 : virtual V{ struct
26 class A : public B, public B1 { argument
89 printf("%d\n", &A::B1::iB1); in main()
92 printf("%d\n", &A::B1::iV); in main()
94 printf("%d\n", &A::B1::V::iV); in main()
/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
20 define double @test1a(double %A1, double %A2, double %B1, double %B2) {
21 %X1 = fsub double %A1, %B1
25 %Z1 = fadd double %Y1, %B1
38 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
56 define double @test2(double %A1, double %A2, double %B1, double %B2) {
57 %X1 = fsub double %A1, %B1
61 %Z1 = fadd double %Y2, %B1
[all …]
/external/clang/test/SemaCXX/
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/chromium/base/
Dbind_internal_win.h44 typedef X1 B1;
53 typedef X1 B1;
62 typedef X1 B1;
72 typedef X1 B1;
82 typedef X1 B1;
93 typedef X1 B1;
104 typedef X1 B1;
116 typedef X1 B1;
129 typedef X1 B1;
143 typedef X1 B1;
[all …]
/external/llvm/test/Transforms/BBVectorize/
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 …]
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
20 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
36 define double @test1a(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2) {
37 %X1 = fsub double %A1, %B1
41 %Z1 = fadd double %Y1, %B1
46 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
62 define double @test2(double %A1, double %A2, double %B1, double %B2) {
63 %X1 = fsub double %A1, %B1
[all …]
Dsimple-sel.ll6 define double @test1(double %A1, double %A2, double %B1, double %B2, i1 %C1, i1 %C2) {
8 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
12 %X1 = fsub double %A1, %B1
18 %Z1 = select i1 %C1, double %Y1, double %B1
32 define double @test2(double %A1, double %A2, double %B1, double %B2) {
35 ; CHECK: %X1.v.i1.1 = insertelement <2 x double> undef, double %B1, i32 0
39 %X1 = fsub double %A1, %B1
49 %Z1 = select i1 %C1, double %Y1, double %B1
/external/llvm/unittests/Support/
DCasting.cpp72 extern bar &B1;
73 bar &B1 = B; variable
76 const bar &B3 = B1;
80 EXPECT_TRUE(isa<foo>(B1)); in TEST()
87 foo &F1 = cast<foo>(B1); in TEST()
100 foo *F8 = B1.baz(); in TEST()
113 foo *F15 = B1.caz(); in TEST()
127 foo *F5 = B1.daz(); in TEST()
140 foo *F5 = B1.naz(); in TEST()
/external/eigen/Eigen/src/Core/products/
DGeneralBlockPanelKernel.h637 RhsPacket B_0, B1, B2, B3;
643 traits.loadRhs(&blB[1*RhsProgress], B1);
650 traits.madd(A0,B1,C1,T0);
651 traits.madd(A1,B1,C5,B1);
652 traits.loadRhs(&blB[5*RhsProgress], B1);
664 traits.madd(A0,B1,C1,T0);
665 traits.madd(A1,B1,C5,B1);
666 traits.loadRhs(&blB[9*RhsProgress], B1);
679 traits.madd(A0,B1,C1,T0);
680 traits.madd(A1,B1,C5,B1);
[all …]
/external/eigen/Eigen/src/LU/arch/
DInverse_SSE.h182 __m128d A1, A2, B1, B2, C1, C2, D1, D2;
186 …A1 = matrix.template packet<MatrixAlignment>( 0); B1 = matrix.template packet<MatrixAlignment>( 2);
203B1 = matrix.template packet<MatrixAlignment>( 8); D1 = matrix.template packet<MatrixAlignment>(10);
205 tmp = B1;
206 B1 = _mm_unpacklo_pd(B1,B2);
224 dB = _mm_mul_pd(B1, dB);
228 AB1 = _mm_mul_pd(B1, _mm_shuffle_pd(A2,A2,3));
231 AB2 = _mm_sub_pd(AB2, _mm_mul_pd(B1, _mm_shuffle_pd(A2,A2,0)));
261 iA1 = _mm_mul_pd(DC1, _mm_shuffle_pd(B1,B1,0));
263 iA1 = _mm_add_pd(iA1, _mm_mul_pd(DC2, _mm_shuffle_pd(B1,B1,3)));
[all …]
/external/llvm/test/Transforms/IndVarSimplify/
Dexit_value_tests.ll14 %B1 = phi i32 [ 0, %0 ], [ %B2, %Loop ] ; <i32> [#uses=1]
16 %B2 = add i32 %B1, %A1 ; <i32> [#uses=2]
61 %B1 = phi i32 [ 0, %0 ], [ %B2, %Loop ] ; <i32> [#uses=1]
63 %B2 = add i32 %B1, %A1 ; <i32> [#uses=2]
92 %B1 = trunc i32 %A1 to i16 ; <i16> [#uses=2]
94 %C = icmp eq i16 %B1, 1000 ; <i1> [#uses=1]
98 ret i16 %B1
/external/llvm/test/Transforms/InstCombine/
Dapint-xor2.ll11 %B1 = and i447 %B, 70368744177663
12 %C1 = xor i447 %A1, %B1
48 %B1 = or i1023 %A, 70368744177663
49 %C1 = xor i1023 %B1, 703687463
Dapint-xor1.ll10 %B1 = and i47 %B, 70368744177661
11 %C1 = xor i47 %A1, %B1
47 %B1 = or i47 %A, 70368744177663
48 %C1 = xor i47 %B1, 703687463

12345678