Searched refs:width (Results 1 - 25 of 39) sorted by relevance

12

/art/test/131-structural-change/
H A Dbuild34 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
36 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/079-phantom/src/
H A DBitmap.java36 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { argument
38 mWidth = width;
68 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { argument
/art/runtime/interpreter/mterp/mips64/
H A Dop_aget.S20 dlsa a0, a1, a0, $shift # a0 <- arrayObj + index*width
22 daddu a0, a1, a0 # a0 <- arrayObj + index*width
H A Dop_aput.S20 dlsa a0, a1, a0, $shift # a0 <- arrayObj + index*width
22 daddu a0, a1, a0 # a0 <- arrayObj + index*width
H A Dop_aget_wide.S13 dlsa a0, a1, a0, 3 # a0 <- arrayObj + index*width
H A Dop_aput_wide.S13 dlsa a0, a1, a0, 3 # a0 <- arrayObj + index*width
/art/test/091-override-package-private-method/
H A Dbuild36 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
38 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/127-checker-secondarydex/
H A Dbuild36 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
38 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/138-duplicate-classes-check2/
H A Dbuild36 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes
38 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex
/art/test/085-old-style-inner-class/
H A Dbuild30 ${DX} --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes 2>/dev/null
/art/tools/ahat/src/heapdump/
H A DAhatClassInstance.java193 Integer width = getIntField("mWidth", null);
194 if (width == null) {
210 int[] abgr = new int[height * width];
220 width, height, BufferedImage.TYPE_4BYTE_ABGR);
221 bitmap.setRGB(0, 0, width, height, abgr, 0, width);
/art/runtime/jdwp/
H A Djdwp_request.cc65 // Helper function: read a variable-width value from the input buffer.
66 uint64_t Request::ReadValue(size_t width) { argument
68 switch (width) {
73 default: LOG(FATAL) << width; break;
/art/test/551-checker-shifter-operand/
H A Dbuild152 --dump-width=1000 ${DX_FLAGS} classes2
164 --dump-width=1000 ${DX_FLAGS} classes
195 --dump-width=1000 ${DX_FLAGS} classes-ex
/art/runtime/interpreter/mterp/arm/
H A Dop_aget.S22 add r0, r0, r1, lsl #$shift @ r0<- arrayObj + index*width
H A Dop_aput.S22 add r0, r0, r1, lsl #$shift @ r0<- arrayObj + index*width
H A Dop_aput_wide.S16 add r0, r0, r1, lsl #3 @ r0<- arrayObj + index*width
H A Dop_aget_wide.S17 add r0, r0, r1, lsl #3 @ r0<- arrayObj + index*width
/art/runtime/interpreter/mterp/mips/
H A Dop_aget.S22 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width
H A Dop_aget_wide.S16 EAS3(a0, a0, a1) # a0 <- arrayObj + index*width
H A Dop_aput.S20 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width
H A Dop_aput_wide.S14 EAS3(a0, a0, a1) # a0 <- arrayObj + index*width
/art/test/etc/
H A Ddefault-build212 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 ${DX_FLAGS} classes-ex
214 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 ${DX_FLAGS} classes
258 --dump-width=1000 ${DX_FLAGS} classes2
270 --dump-width=1000 ${DX_FLAGS} classes
315 --dump-width=1000 ${DX_FLAGS} classes-ex
/art/dexdump/
H A Ddexdump.cc421 * Reads variable width value, possibly sign extended at the last defined byte.
787 // Determine index and width of the string.
790 u4 width = 4; local
802 width = 4;
806 width = 8;
811 width = 4;
817 width = 4;
839 outSize = snprintf(buf.get(), bufSize, "%s // type@%0*x", tp, width, index);
841 outSize = snprintf(buf.get(), bufSize, "<type?> // type@%0*x", width, index);
847 outSize = snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", st, width, inde
[all...]
/art/runtime/
H A Ddebugger.cc1194 size_t width = GetTagWidth(element_tag); local
1195 uint8_t* dst = expandBufAddSpace(pReply, count * width);
1196 if (width == 8) {
1199 } else if (width == 4) {
1202 } else if (width == 2) {
1207 memcpy(dst, &src[offset * width], count * width);
1251 size_t width = GetTagWidth(element_tag); local
1252 if (width == 8) {
1254 } else if (width
1959 SetFieldValue(JDWP::ObjectId object_id, JDWP::FieldId field_id, uint64_t value, int width) argument
1964 SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) argument
2593 size_t width = Dbg::GetTagWidth(reqSigByte); local
2619 GetLocalValue(const StackVisitor& visitor, ScopedObjectAccessUnchecked& soa, int slot, JDWP::JdwpTag tag, uint8_t* buf, size_t width) argument
2760 size_t width = Dbg::GetTagWidth(sigByte); local
2782 SetLocalValue(Thread* thread, StackVisitor& visitor, int slot, JDWP::JdwpTag tag, uint64_t value, size_t width) argument
4067 WriteValue(JDWP::ExpandBuf* pReply, int width, uint64_t value) argument
4210 size_t width = GetTagWidth(result_tag); local
[all...]
/art/dexlayout/
H A Ddexlayout.cc366 // Determine index and width of the string.
369 uint32_t width = 4; local
381 width = 4;
385 width = 8;
390 width = 4;
396 width = 4;
418 outSize = snprintf(buf.get(), buf_size, "%s // type@%0*x", tp, width, index);
420 outSize = snprintf(buf.get(), buf_size, "<type?> // type@%0*x", width, index);
426 outSize = snprintf(buf.get(), buf_size, "\"%s\" // string@%0*x", st, width, index);
428 outSize = snprintf(buf.get(), buf_size, "<string?> // string@%0*x", width, inde
[all...]

Completed in 795 milliseconds

12