Searched refs:B4 (Results 1 - 25 of 56) sorted by relevance

123

/external/clang/test/CXX/special/class.inhctor/
H A Dp3.cpp50 struct B4 { struct
51 template<typename T> explicit B4(T, int = 0);
53 template<typename T> struct T4 : B4 {
54 using B4::B4; // expected-note {{here}}
H A Dp7.cpp23 template<typename T> struct B4 : B3<T>, B1 { struct in inherits:B3,B1
24 B4();
28 B4<char> b4c;
29 B4<int> b4i; // expected-note {{here}}
/external/clang/test/SemaCXX/
H A Dalignment-of-derived-class.cpp27 struct B4 : public A { struct in inherits:A
30 static_assert(__alignof(B4) == 16, "B4 should be aligned to 16 bytes");
H A Dwarn-overloaded-virtual.cpp34 struct B4 { struct
38 struct S4 : public B4 {
H A Dcxx1y-variable-templates_in_class.cpp55 class B4 { class in namespace:out_of_line
61 template<typename T, typename T0> CONST T B4::a; // expected-error {{default initialization of an object of const type 'const int'}}
62 template<typename T> CONST T B4::a<T,int>;
63 template CONST int B4::a<int,char>; // expected-note {{in instantiation of}}
64 template CONST int B4::a<int,int>;
66 template<typename T, typename T0> CONST T B4::b;
67 template<typename T> CONST T B4::b<T,int>; // expected-error {{default initialization of an object of const type 'const int'}}
68 template CONST int B4::b<int,char>;
69 template CONST int B4::b<int,int>; // expected-note {{in instantiation of}}
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp12 struct __declspec(align(8)) B4 { B4() {printf("B4 : %p\n", this);} }; function
49 struct C : B0, B1, B2, B3, B4 {
64 // CHECK-NEXT: 32 | struct B4 (base) (empty)
142 struct G : B0, B1, B2, B3, B4 {
153 // CHECK-NEXT: 32 | struct B4 (base) (empty)
158 struct __declspec(align(32)) H : B0, B1, B2, B3, B4 {
169 // CHECK-NEXT: 32 | struct B4 (base) (empty)
H A Dms-x86-empty-virtual-base.cpp12 struct __declspec(align(8)) B4 { B4() {printf("B4 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function
73 struct C : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
90 // CHECK-NEXT: 40 | struct B4 (virtual base) (empty)
105 // CHECK-X64-NEXT: 48 | struct B4 (virtual base) (empty)
290 struct I : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
303 // CHECK-NEXT: 168 | struct B4 (virtual base) (empty)
314 // CHECK-X64-NEXT: 168 | struct B4 (virtual base) (empty)
318 struct __declspec(align(32)) J : virtual B0, virtual B1, virtual B2, virtual B3, virtual B4 {
[all...]
H A Dms-x86-vfvb-sharing.cpp12 struct B4 : virtual B1 { B4() { printf("B4 = %p\n", this); } virtual void g() { printf("B4"); } }; function in struct:B4
113 struct D : B4, B0, virtual B1 {
122 // CHECK-NEXT: 0 | struct B4 (primary base)
123 // CHECK-NEXT: 0 | (B4 vftable pointer)
124 // CHECK-NEXT: 4 | (B4 vbtable pointer)
135 // CHECK-X64-NEXT: 0 | struct B4 (primary base)
136 // CHECK-X64-NEXT: 0 | (B4 vftabl
[all...]
H A Dms-x86-vfvb-alignment.cpp12 struct B4 : virtual B3 { int a; B4() : a(0xf00000B4) {} }; function in struct:B4
82 struct C : B4 { int a; C() : a(0xf000000C) {} virtual void f() { printf("C"); } };
89 // CHECK-NEXT: 16 | struct B4 (base)
90 // CHECK-NEXT: 16 | (B4 vbtable pointer)
102 // CHECK-X64-NEXT: 16 | struct B4 (base)
103 // CHECK-X64-NEXT: 16 | (B4 vbtable pointer)
117 // CHECK-NEXT: 16 | struct B4 (base)
118 // CHECK-NEXT: 16 | (B4 vbtable pointer)
130 // CHECK-X64-NEXT: 16 | struct B4 (bas
[all...]
H A Dms-x86-lazy-empty-nonvirtual-base.cpp12 struct B4 { B4() { printf("B4 = %p\n", this); } }; function in struct:B4
24 struct B4X { B4X() { printf("B4 = %p\n", this); } };
496 struct D : B1, B2, B3, B4, B5, virtual B0 {
508 // CHECK-NEXT: 3 | struct B4 (base) (empty)
522 // CHECK-X64-NEXT: 3 | struct B4 (base) (empty)
530 struct E : B1, B6, B3, B4, B5, virtual B0 {
541 // CHECK-NEXT: 4 | struct B4 (base) (empty)
554 // CHECK-X64-NEXT: 4 | struct B4 (bas
[all...]
H A Dms-x86-basic-layout.cpp13 struct B4 { struct
15 B4() : a(0xf00000b4) {} function in struct:B4
35 struct TestF0 : A4, virtual B4 {
48 // CHECK-NEXT: 12 | struct B4 (virtual base)
60 // CHECK-X64-NEXT: 24 | struct B4 (virtual base)
/external/linux-tools-perf/perf-3.12.0/arch/c6x/lib/
H A Dmemcpy_64plus.S22 [A0] LDB .D2T1 *B4++,A5
23 [A1] LDB .D2T1 *B4++,A7
24 [A1] LDB .D2T1 *B4++,A8
25 [B0] LDNW .D2T1 *B4++,A9
37 LDNDW .D2T1 *B4++,A9:A8
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp59 struct B4 { struct
60 B4();
63 B4 b4; // expected-error {{deleted function}}
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c13 B4 = -2, enumerator in enum:B
/external/llvm/unittests/Support/
H A DCasting.cpp101 const bar *const B4 = B2; member in namespace:__anon26526
107 EXPECT_TRUE(isa<foo>(B4));
119 const foo *F6 = cast<foo>(B4);
133 const foo *F13 = cast_or_null<foo>(B4);
146 const foo *F3 = dyn_cast<foo>(B4);
160 const foo *F3 = dyn_cast_or_null<foo>(B4);
171 //foo *F22 = cast<foo>(B4); // Yields const foo*
/external/valgrind/main/none/tests/s390x/
H A Dicm.stdout.exp1 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 04 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00 06 00 00 00 00 00 00 00 07 00 00 01 00 00 00 01 08 00 00 01 01 00 00 01 01 00 00 00 00 00 00 00 0A 00 00 00 00 00 00 00 0B 00 00 01 00 00 00 01 0C 00 00 01 02 00 00 01 02 00 01 00 00 00 01 00 0E 00 01 00 02 00 01 00 02 00 01 02 00 00 01 02 10 00 01 02 3C 00 01 02 3C 00 00 00 00 00 00 00 12 00 00 00 00 00 00 00 13 00 00 3C 00 00 00 3C 14 00 00 3C 3D 00 00 3C 3D 00 3C 00 00 00 3C 00 16 00 3C 00 3D 00 3C 00 3D 00 3C 3D 00 00 3C 3D 18 00 3C 3D 3E 00 3C 3D 3E 3C 00 00 00 3C 00 00 1A 3C 00 00 3D 3C 00 00 3D 3C 00 3D 00 3C 00 3D 1C 3C 00 3D 3E 3C 00 3D 3E 3C 3D 00 00 3C 3D 00 1E 3C 3D 00 3E 3C 3D 00 3E 3C 3D 3E 00 3C 3D 3E 20 3C 3D 3E 78 3C 3D 3E 78 00 00 00 00 00 00 00 22 00 00 00 00 00 00 00 23 00 00 78 00 00 00 78 24 00 00 78 79 00 00 78 79 00 78 00 00 00 78 00 26 00 78 00 79 00 78 00 79 00 78 79 00 00 78 79 28 00 78 79 7A 00 78 79 7A 78 00 00 00 78 00 00 2A 78 00 00 79 78 00 00 79 78 00 79 00 78 00 79 2C 78 00 79 7A 78 00 79 7A 78 79 00 00 78 79 00 2E 78 79 00 7A 78 79 00 7A 78 79 7A 00 78 79 7A 30 78 79 7A B4 78 79 7A B4 00 00 00 00 00 00 00 32 00 00 B4 00 00 00 B4 33 00 00 B4 B5 00 00 B4 B5 00 B4 00 00 00 B4 00 35 00 B4 00 B5 00 B4 0
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.cc427 15 * B24 | 15 * B20 | 15 * B16 | 15 * B12 | 15 * B8 | 15 * B4;
744 return (instr & (B27 | B26 | I | kOpCodeMask | S | kRdMask | B4)) ==
1198 instr |= x.rs_.code()*B8 | x.shift_op_ | B4 | x.rm_.code();
1241 DCHECK((instr & ~(kCondMask | L | S6 | H)) == (B4 | B7));
1543 src2.code()*B8 | B7 | B4 | src1.code());
1552 src2.code()*B8 | B7 | B4 | src1.code());
1561 src2.code()*B8 | B4 | src1.code());
1570 src2.code() * B8 | B4 | src1.code());
1578 emit(cond | s | dst.code()*B16 | src2.code()*B8 | B7 | B4 | src1.code());
1591 src2.code()*B8 | B7 | B4 | src
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_intrapred_ssse3.asm468 ; A4 B4 A3 B3
469 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m1, m2, m3 ; 3-tap avg B4 B3 B2 B1 C1 D1
472 punpcklqdq m3, m1 ; B4 B3 B2 B1 C1 D1 x x A4 A3 A2 A1 ..
476 pshufb m3, [GLOBAL(sh_b8091a2b345)] ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 ..
502 ; A4 B4 A3 B3 A2 B2 A1 B1
503 ; A5 B5 A4 B4 A3 B3 A2 B2
504 ; A6 B6 A5 B5 A4 B4 A3 B3
505 ; A7 B7 A6 B6 A5 B5 A4 B4
518 movhps [dstq+stride3q], m6 ; A-B4, A-B3, A-B2, A-B1
527 psrldq m6, 2 ; A-B7, A-B6, A-B5, A-B4
[all...]
/external/libvpx/libvpx/vp9/common/x86/
H A Dvp9_intrapred_ssse3.asm468 ; A4 B4 A3 B3
469 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m1, m2, m3 ; 3-tap avg B4 B3 B2 B1 C1 D1
472 punpcklqdq m3, m1 ; B4 B3 B2 B1 C1 D1 x x A4 A3 A2 A1 ..
476 pshufb m3, [GLOBAL(sh_b8091a2b345)] ; A4 B4 A3 B3 A2 B2 A1 B1 C1 D1 ..
502 ; A4 B4 A3 B3 A2 B2 A1 B1
503 ; A5 B5 A4 B4 A3 B3 A2 B2
504 ; A6 B6 A5 B5 A4 B4 A3 B3
505 ; A7 B7 A6 B6 A5 B5 A4 B4
518 movhps [dstq+stride3q], m6 ; A-B4, A-B3, A-B2, A-B1
527 psrldq m6, 2 ; A-B7, A-B6, A-B5, A-B4
[all...]
/external/oprofile/module/ia64/
H A DIA64entry.h55 .spillsp b4, SW(B4)+16+(off); .spillsp b5, SW(B5)+16+(off); \
/external/chromium_org/third_party/boringssl/linux-arm/crypto/modes/
H A Dghash-armv4.S398 vext.8 d22, d6, d6, #4 @ B4
401 vmull.p8 q11, d26, d22 @ K = A*B4
436 vext.8 d22, d6, d6, #4 @ B4
439 vmull.p8 q11, d28, d22 @ K = A*B4
473 vext.8 d22, d7, d7, #4 @ B4
476 vmull.p8 q11, d27, d22 @ K = A*B4
/external/openssl/crypto/modes/asm/
H A Dghash-armv4.S390 vext.8 d22, d6, d6, #4 @ B4
393 vmull.p8 q11, d26, d22 @ K = A*B4
428 vext.8 d22, d6, d6, #4 @ B4
431 vmull.p8 q11, d28, d22 @ K = A*B4
465 vext.8 d22, d7, d7, #4 @ B4
468 vmull.p8 q11, d27, d22 @ K = A*B4
/external/libunwind/src/ia64/
H A Dunwind_decoder.h425 UNW_DEC_COPY_STATE(B4, label, arg);
427 UNW_DEC_LABEL_STATE(B4, label, arg);
/external/openssl/crypto/bn/asm/
H A Darmv4-gf2m.S121 vext.8 d16, d27, d27, #4 @ B4
124 vmull.p8 q8, d26, d16 @ K = A*B4
/external/chromium_org/third_party/flot/
H A Dexcanvas.min.js1 if(!document.createElement("canvas").getContext){(function(){var ab=Math;var n=ab.round;var l=ab.sin;var A=ab.cos;var H=ab.abs;var N=ab.sqrt;var d=10;var f=d/2;var z=+navigator.userAgent.match(/MSIE ([\d.]+)?/)[1];function y(){return this.context_||(this.context_=new D(this))}var t=Array.prototype.slice;function g(j,m,p){var i=t.call(arguments,2);return function(){return j.apply(m,i.concat(t.call(arguments)))}}function af(i){return String(i).replace(/&/g,"&amp;").replace(/"/g,"&quot;")}function Y(m,j,i){if(!m.namespaces[j]){m.namespaces.add(j,i,"#default#VML")}}function R(j){Y(j,"g_vml_","urn:schemas-microsoft-com:vml");Y(j,"g_o_","urn:schemas-microsoft-com:office:office");if(!j.styleSheets.ex_canvas_){var i=j.createStyleSheet();i.owningElement.id="ex_canvas_";i.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}R(document);var e={init:function(i){var j=i||document;j.createElement("canvas");j.attachEvent("onreadystatechange",g(this.init_,this,j))},init_:function(p){var m=p.getElementsByTagName("canvas");for(var j=0;j<m.length;j++){this.initElement(m[j])}},initElement:function(j){if(!j.getContext){j.getContext=y;R(j.ownerDocument);j.innerHTML="";j.attachEvent("onpropertychange",x);j.attachEvent("onresize",W);var i=j.attributes;if(i.width&&i.width.specified){j.style.width=i.width.nodeValue+"px"}else{j.width=j.clientWidth}if(i.height&&i.height.specified){j.style.height=i.height.nodeValue+"px"}else{j.height=j.clientHeight}}return j}};function x(j){var i=j.srcElement;switch(j.propertyName){case"width":i.getContext().clearRect();i.style.width=i.attributes.width.nodeValue+"px";i.firstChild.style.width=i.clientWidth+"px";break;case"height":i.getContext().clearRect();i.style.height=i.attributes.height.nodeValue+"px";i.firstChild.style.height=i.clientHeight+"px";break}}function W(j){var i=j.srcElement;if(i.firstChild){i.firstChild.style.width=i.clientWidth+"px";i.firstChild.style.height=i.clientHeight+"px"}}e.init();var k=[];for(var ae=0;ae<16;ae++){for(var ad=0;ad<16;ad++){k[ae*16+ad]=ae.toString(16)+ad.toString(16)}}function B(){return[[1,0,0],[0,1,0],[0,0,1]]}function J(p,m){var j=B();for(var i=0;i<3;i++){for(var ah=0;ah<3;ah++){var Z=0;for(var ag=0;ag<3;ag++){Z+=p[i][ag]*m[ag][ah]}j[i][ah]=Z}}return j}function v(j,i){i.fillStyle=j.fillStyle;i.lineCap=j.lineCap;i.lineJoin=j.lineJoin;i.lineWidth=j.lineWidth;i.miterLimit=j.miterLimit;i.shadowBlur=j.shadowBlur;i.shadowColor=j.shadowColor;i.shadowOffsetX=j.shadowOffsetX;i.shadowOffsetY=j.shadowOffsetY;i.strokeStyle=j.strokeStyle;i.globalAlpha=j.globalAlpha;i.font=j.font;i.textAlign=j.textAlign;i.textBaseline=j.textBaseline;i.arcScaleX_=j.arcScaleX_;i.arcScaleY_=j.arcScaleY_;i.lineScale_=j.lineScale_}var b={aliceblue:"#F0F8FF",antiquewhite:"#FAEBD7",aquamarine:"#7FFFD4",azure:"#F0FFFF",beige:"#F5F5DC",bisque:"#FFE4C4",black:"#000000",blanchedalmond:"#FFEBCD",blueviolet:"#8A2BE2",brown:"#A52A2A",burlywood:"#DEB887",cadetblue:"#5F9EA0",chartreuse:"#7FFF00",chocolate:"#D2691E",coral:"#FF7F50",cornflowerblue:"#6495ED",cornsilk:"#FFF8DC",crimson:"#DC143C",cyan:"#00FFFF",darkblue:"#00008B",darkcyan:"#008B8B",darkgoldenrod:"#B8860B",darkgray:"#A9A9A9",darkgreen:"#006400",darkgrey:"#A9A9A9",darkkhaki:"#BDB76B",darkmagenta:"#8B008B",darkolivegreen:"#556B2F",darkorange:"#FF8C00",darkorchid:"#9932CC",darkred:"#8B0000",darksalmon:"#E9967A",darkseagreen:"#8FBC8F",darkslateblue:"#483D8B",darkslategray:"#2F4F4F",darkslategrey:"#2F4F4F",darkturquoise:"#00CED1",darkviolet:"#9400D3",deeppink:"#FF1493",deepskyblue:"#00BFFF",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1E90FF",firebrick:"#B22222",floralwhite:"#FFFAF0",forestgreen:"#228B22",gainsboro:"#DCDCDC",ghostwhite:"#F8F8FF",gold:"#FFD700",goldenrod:"#DAA520",grey:"#808080",greenyellow:"#ADFF2F",honeydew:"#F0FFF0",hotpink:"#FF69B4",indianred:"#CD5C5C",indigo:"#4B0082",ivory:"#FFFFF0",khaki:"#F0E68C",lavender:"#E6E6FA",lavenderblush:"#FFF0F5",lawngreen:"#7CFC00",lemonchiffon:"#FFFACD",lightblue:"#ADD8E6",lightcoral:"#F08080",lightcyan:"#E0FFFF",lightgoldenrodyellow:"#FAFAD2",lightgreen:"#90EE90",lightgrey:"#D3D3D3",lightpink:"#FFB6C1",lightsalmon:"#FFA07A",lightseagreen:"#20B2AA",lightskyblue:"#87CEFA",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#B0C4DE",lightyellow:"#FFFFE0",limegreen:"#32CD32",linen:"#FAF0E6",magenta:"#FF00FF",mediumaquamarine:"#66CDAA",mediumblue:"#0000CD",mediumorchid:"#BA55D3",mediumpurple:"#9370DB",mediumseagreen:"#3CB371",mediumslateblue:"#7B68EE",mediumspringgreen:"#00FA9A",mediumturquoise:"#48D1CC",mediumvioletred:"#C71585",midnightblue:"#191970",mintcream:"#F5FFFA",mistyrose:"#FFE4E1",moccasin:"#FFE4B5",navajowhite:"#FFDEAD",oldlace:"#FDF5E6",olivedrab:"#6B8E23",orange:"#FFA500",orangered:"#FF4500",orchid:"#DA70D6",palegoldenrod:"#EEE8AA",palegreen:"#98FB98",paleturquoise:"#AFEEEE",palevioletred:"#DB7093",papayawhip:"#FFEFD5",peachpuff:"#FFDAB9",peru:"#CD853F",pink:"#FFC0CB",plum:"#DDA0DD",powderblue:"#B0E0E6",rosybrown:"#BC8F8F",royalblue:"#4169E1",saddlebrown:"#8B4513",salmon:"#FA8072",sandybrown:"#F4A460",seagreen:"#2E8B57",seashell:"#FFF5EE",sienna:"#A0522D",skyblue:"#87CEEB",slateblue:"#6A5ACD",slategray:"#708090",slategrey:"#708090",snow:"#FFFAFA",springgreen:"#00FF7F",steelblue:"#4682B4",tan:"#D2B48C",thistle:"#D8BFD8",tomato:"#FF6347",turquoise:"#40E0D0",violet:"#EE82EE",wheat:"#F5D (…)

Completed in 3078 milliseconds

123