Home
last modified time | relevance | path

Searched refs:height (Results 1 – 4 of 4) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatBitmapInstance.java199 private final int height; field in AhatBitmapInstance.BitmapInfo
204 public BitmapInfo(int width, int height, int format, byte[] buffer) { in BitmapInfo() argument
206 this.height = height; in BitmapInfo()
214 return Objects.hash(width, height, format, bufferHash); in hashCode()
227 && (this.height == other.height) in equals()
251 Integer height = getIntField("mHeight", null); in getBitmapInfo() local
252 if (height == null) { in getBitmapInfo()
258 if (buffer.length < 4 * height * width) { in getBitmapInfo()
261 mBitmapInfo = new BitmapInfo(width, height, -1, buffer); in getBitmapInfo()
283 mBitmapInfo = new BitmapInfo(width, height, bitmapDumpData.format, buffer); in getBitmapInfo()
[all …]
/art/tools/ahat/src/test-dump/android/graphics/
DBitmap.java29 public Bitmap(int width, int height, long nativePtr, byte[] buffer) { in Bitmap() argument
31 this.mHeight = height; in Bitmap()
/art/test/079-phantom/src/
DBitmap.java37 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { in Bitmap() argument
40 mHeight = height; in Bitmap()
69 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { in allocNativeStorage() argument
/art/runtime/
Dsubtype_check_test.cc313 void CreateRootedTree(size_t width, size_t height) { in CreateRootedTree()
316 CreateTreeFor(root_, /*width=*/width, /*levels=*/height); in CreateRootedTree()