Searched defs:getAllocationByteCount (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/compat/java/android/support/v4/graphics/
H A DBitmapCompat.java34 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.BitmapCompatBaseImpl
55 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.BitmapCompatApi19Impl
56 return bitmap.getAllocationByteCount();
89 public static int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat
90 return IMPL.getAllocationByteCount(bitmap);
/frameworks/base/libs/hwui/hwui/
H A DBitmap.cpp273 size_t Bitmap::getAllocationByteCount() const { function in class:android::Bitmap
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp57 mAllocationSize = mBitmap->getAllocationByteCount();
106 size_t getAllocationByteCount() const { function in class:android::BitmapWrapper
108 return mBitmap->getAllocationByteCount();
868 if (requestedSize > bitmap->getAllocationByteCount()) {
1496 return static_cast<jint>(bitmapHandle->getAllocationByteCount());
1605 gBitmap_getAllocationByteCountMethodID = GetMethodIDOrDie(env, gBitmap_class, "getAllocationByteCount", "()I");
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java134 long nativeSize = NATIVE_ALLOCATION_SIZE + getAllocationByteCount();
221 * while {@link #getAllocationByteCount()} will reflect that of the initial
1410 * see {@link #getAllocationByteCount()}.
1426 * #getAllocationByteCount()}.</p>
1452 public final int getAllocationByteCount() { method in class:Bitmap
1454 Log.w(TAG, "Called getAllocationByteCount() on a recycle()'d bitmap! "

Completed in 159 milliseconds