/art/tools/amm/models/ |
D | Graphics.md | 6 2 * (4 * width * height) 9 3 * (4 * width * height) 12 3 * (4 * width * height) 19 about the width and height associated with each instance.
|
D | Bitmap.md | 10 `android.graphics.Bitmap` instance, including width, height, and ideally a
|
/art/tools/amm/AmmTest/src/com/android/amm/test/ |
D | ThreadedRendererUse.java | 31 public ThreadedRendererUse(Context context, int width, int height) { in ThreadedRendererUse() argument 42 layout.width = width; in ThreadedRendererUse()
|
D | TextureViewUse.java | 33 public TextureViewUse(Context context, ViewGroup vg, int width, int height) { in TextureViewUse() argument 35 vg.addView(mTextureView, width, height); in TextureViewUse()
|
D | SurfaceViewUse.java | 34 public SurfaceViewUse(Context context, ViewGroup vg, int width, int height) { in SurfaceViewUse() argument 36 vg.addView(mSurfaceView, width, height); in SurfaceViewUse()
|
/art/tools/ahat/src/main/com/android/ahat/heapdump/ |
D | AhatClassInstance.java | 240 public final int width; field in AhatClassInstance.BitmapInfo 244 public BitmapInfo(int width, int height, byte[] buffer) { in BitmapInfo() argument 245 this.width = width; in BitmapInfo() 260 Integer width = getIntField("mWidth", null); in getBitmapInfo() local 261 if (width == null) { in getBitmapInfo() 275 if (buffer.length < 4 * height * width) { in getBitmapInfo() 279 return new BitmapInfo(width, height, buffer); in getBitmapInfo() 291 int[] abgr = new int[info.height * info.width]; in asBitmap() 301 info.width, info.height, BufferedImage.TYPE_4BYTE_ABGR); in asBitmap() 302 bitmap.setRGB(0, 0, info.width, info.height, abgr, 0, info.width); in asBitmap()
|
/art/libartbase/base/ |
D | bit_utils.h | 418 inline static constexpr T BitFieldClear(T value, size_t lsb, size_t width) { in BitFieldClear() argument 419 DCHECK_GE(BitSizeOf(value), lsb + width) << "Bit field out of range for value"; in BitFieldClear() 421 const auto mask = MaskLeastSignificant<T>(width); in BitFieldClear() 445 inline static constexpr T BitFieldInsert(T value, T2 data, size_t lsb, size_t width) { in BitFieldInsert() argument 446 DCHECK_GE(BitSizeOf(value), lsb + width) << "Bit field out of range for value"; in BitFieldInsert() 447 if (width != 0u) { in BitFieldInsert() 448 DCHECK_GE(MaxInt<T2>(width), data) << "Data out of range [too large] for bitwidth"; in BitFieldInsert() 449 DCHECK_LE(MinInt<T2>(width), data) << "Data out of range [too small] for bitwidth"; in BitFieldInsert() 453 const auto data_mask = MaskLeastSignificant<T2>(width); in BitFieldInsert() 454 const auto value_cleared = BitFieldClear(value, lsb, width); in BitFieldInsert() [all …]
|
/art/test/079-phantom/src/ |
D | Bitmap.java | 37 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { in Bitmap() argument 39 mWidth = width; in Bitmap() 69 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { in allocNativeStorage() argument
|
/art/test/712-varhandle-invocations/util-src/ |
D | generate_java.py | 47 …def __init__(self, name, boxed_type, examples, ordinal=-1, width=-1, supports_bitwise=True, suppor… argument 50 self.width=width 77 BOOLEAN_TYPE = ValueType("boolean", "Boolean", [ "true", "false" ], ordinal = 0, width = 1, support… 78 …"Byte", [ "(byte) -128", "(byte) -61", "(byte) 7", "(byte) 127", "(byte) 33" ], ordinal=1, width=1) 79 …hort", [ "(short) -32768", "(short) -384", "(short) 32767", "(short) 0xaa55" ], ordinal=2, width=2) 80 …ueType("char", "Character", [ r"'A'", r"'#'", r"'$'", r"'Z'", r"'t'", r"'c'" ], ordinal=3, width=2) 81 …, "Integer", [ "-0x01234567", "0x7f6e5d4c", "0x12345678", "0x10215220", "42" ], ordinal=4, width=4) 82 …ong", [ "-0x0123456789abcdefl", "0x789abcdef0123456l", "0xfedcba9876543210l" ], ordinal=5, width=8) 83 …77e23f", "1.234e-17f", "3.40e36f", "-8.888e3f", "4.442e11f" ], ordinal=6, width=4, supports_bitwis… 84 …00", "1.11e200", "3.141", "1.1111", "6.022e23", "6.626e-34" ], ordinal=7, width=4, supports_bitwis… [all …]
|
/art/runtime/jdwp/ |
D | jdwp_request.cc | 66 uint64_t Request::ReadValue(size_t width) { in ReadValue() argument 68 switch (width) { in ReadValue() 73 default: LOG(FATAL) << width; in ReadValue()
|
D | jdwp_handler.cc | 107 size_t width = Dbg::GetTagWidth(argTypes[i]); in RequestInvoke() local 108 argValues[i] = request->ReadValue(width); in RequestInvoke() 109 VLOG(jdwp) << " " << argTypes[i] << StringPrintf("(%zd): %#" PRIx64, width, in RequestInvoke() 630 size_t width = Dbg::GetTagWidth(fieldTag); in CT_SetValues() local 631 uint64_t value = request->ReadValue(width); in CT_SetValues() 634 JdwpError status = Dbg::SetStaticFieldValue(fieldId, value, width); in CT_SetValues() 821 size_t width = Dbg::GetTagWidth(fieldTag); in OR_SetValues() local 822 uint64_t value = request->ReadValue(width); in OR_SetValues() 824 …VLOG(jdwp) << " --> fieldId=" << fieldId << " tag=" << fieldTag << "(" << width << ") value=" <… in OR_SetValues() 825 JdwpError status = Dbg::SetFieldValue(object_id, fieldId, value, width); in OR_SetValues()
|
D | jdwp.h | 434 uint64_t ReadValue(size_t width);
|
/art/runtime/interpreter/mterp/mips64/ |
D | array.S | 20 dlsa a0, a1, a0, $shift # a0 <- arrayObj + index*width 22 daddu a0, a1, a0 # a0 <- arrayObj + index*width 79 dlsa a0, a1, a0, 3 # a0 <- arrayObj + index*width 108 dlsa a0, a1, a0, $shift # a0 <- arrayObj + index*width 110 daddu a0, a1, a0 # a0 <- arrayObj + index*width 160 dlsa a0, a1, a0, 3 # a0 <- arrayObj + index*width
|
/art/dexdump/ |
D | dexdump.cc | 765 u4 width = 4; in indexString() local 777 width = 4; in indexString() 781 width = 8; in indexString() 786 width = 4; in indexString() 792 width = 4; in indexString() 814 outSize = snprintf(buf.get(), bufSize, "%s // type@%0*x", tp, width, index); in indexString() 816 outSize = snprintf(buf.get(), bufSize, "<type?> // type@%0*x", width, index); in indexString() 822 outSize = snprintf(buf.get(), bufSize, "\"%s\" // string@%0*x", st, width, index); in indexString() 824 outSize = snprintf(buf.get(), bufSize, "<string?> // string@%0*x", width, index); in indexString() 834 backDescriptor, name, signature.ToString().c_str(), width, index); in indexString() [all …]
|
/art/runtime/interpreter/mterp/mips/ |
D | array.S | 22 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width 79 EAS3(a0, a0, a1) # a0 <- arrayObj + index*width 106 EASN(a0, a0, a1, $shift) # a0 <- arrayObj + index*width 157 EAS3(a0, a0, a1) # a0 <- arrayObj + index*width
|
/art/runtime/ |
D | debugger.cc | 1266 size_t width = GetTagWidth(element_tag); in OutputArray() local 1267 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray() 1268 if (width == 8) { in OutputArray() 1271 } else if (width == 4) { in OutputArray() 1274 } else if (width == 2) { in OutputArray() 1279 memcpy(dst, &src[offset * width], count * width); in OutputArray() 1323 size_t width = GetTagWidth(element_tag); in SetArrayElements() local 1324 if (width == 8) { in SetArrayElements() 1326 } else if (width == 4) { in SetArrayElements() 1328 } else if (width == 2) { in SetArrayElements() [all …]
|
D | subtype_check_test.cc | 313 void CreateRootedTree(size_t width, size_t height) { in CreateRootedTree() 316 CreateTreeFor(root_, /*width=*/width, /*levels=*/height); in CreateRootedTree() 325 void CreateTreeFor(MockClass* parent, size_t width, size_t levels) { in CreateTreeFor() 331 for (size_t i = 0; i < width; ++i) { in CreateTreeFor() 333 CreateTreeFor(child, width, levels - 1); in CreateTreeFor()
|
D | debugger.h | 445 uint64_t value, int width) 450 static JDWP::JdwpError SetStaticFieldValue(JDWP::FieldId field_id, uint64_t value, int width) 762 JDWP::JdwpTag tag, uint8_t* buf, size_t width) 765 JDWP::JdwpTag tag, uint64_t value, size_t width)
|
/art/runtime/interpreter/mterp/arm/ |
D | array.S | 22 add r0, r0, r1, lsl #$shift @ r0<- arrayObj + index*width 82 add r0, r0, r1, lsl #3 @ r0<- arrayObj + index*width 114 add r0, r0, r1, lsl #$shift @ r0<- arrayObj + index*width 167 add r0, r0, r1, lsl #3 @ r0<- arrayObj + index*width
|
/art/libdexfile/dex/ |
D | dex_file.cc | 614 size_t width = value_arg + 1; // assume and correct later in Next() local 619 width = 0; in Next() 660 width = 0; in Next() 666 ptr_ += width; in Next()
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 211 int32_t width = value_arg + 1; in SkipAnnotationValue() local 235 width = 0; in SkipAnnotationValue() 248 width = 0; in SkipAnnotationValue() 253 width = 0; in SkipAnnotationValue() 260 annotation += width; in SkipAnnotationValue() 430 int32_t width = value_arg + 1; in ProcessAnnotationValue() local 468 width = 0; in ProcessAnnotationValue() 670 width = 0; in ProcessAnnotationValue() 682 width = 0; in ProcessAnnotationValue() 691 width = 0; in ProcessAnnotationValue() [all …]
|
/art/compiler/optimizing/ |
D | code_generator_arm_vixl.h | 795 BakerReadBarrierWidth width = in EncodeBakerReadBarrierFieldData() local 800 BakerReadBarrierWidthField::Encode(width); in EncodeBakerReadBarrierFieldData() 814 BakerReadBarrierWidth width = in EncodeBakerReadBarrierGcRootData() local 819 BakerReadBarrierWidthField::Encode(width); in EncodeBakerReadBarrierGcRootData()
|
D | code_generator_arm_vixl.cc | 1965 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data); in Finalize() local 1966 if (width == BakerReadBarrierWidth::kWide) { in Finalize() 1994 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data); in Finalize() local 1995 if (width == BakerReadBarrierWidth::kWide) { in Finalize() 9357 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data); in CompileBakerReadBarrierThunk() local 9375 const int32_t raw_ldr_offset = (width == BakerReadBarrierWidth::kWide) in CompileBakerReadBarrierThunk() 9384 if (width == BakerReadBarrierWidth::kWide) { in CompileBakerReadBarrierThunk() 9440 BakerReadBarrierWidth width = BakerReadBarrierWidthField::Decode(encoded_data); in CompileBakerReadBarrierThunk() local 9460 DCHECK(kind != BakerReadBarrierKind::kUnsafeCas || width == BakerReadBarrierWidth::kWide); in CompileBakerReadBarrierThunk() 9463 ? (width == BakerReadBarrierWidth::kWide) in CompileBakerReadBarrierThunk()
|
/art/runtime/interpreter/mterp/ |
D | README.txt | 39 oversized handler. On architectures with fixed-width instructions this
|
D | mterp.cc | 42 const int width = kMterpHandlerSize; in CheckMterpAsmConstants() local 45 if ((interp_size == 0) || (interp_size != (art::kNumPackedOpcodes * width))) { in CheckMterpAsmConstants() 47 << "(did an instruction handler exceed " << width << " bytes?)"; in CheckMterpAsmConstants()
|