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

/frameworks/support/compat/java/android/support/v4/graphics/
H A DBitmapCompat.java35 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.BitmapCompatBaseImpl
56 public int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat.BitmapCompatApi19Impl
57 return bitmap.getAllocationByteCount();
90 public static int getAllocationByteCount(Bitmap bitmap) { method in class:BitmapCompat
91 return IMPL.getAllocationByteCount(bitmap);
/frameworks/base/libs/hwui/hwui/
H A DBitmap.cpp463 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();
889 if (requestedSize > bitmap->getAllocationByteCount()) {
1583 return static_cast<jint>(bitmapHandle->getAllocationByteCount());
1692 gBitmap_getAllocationByteCountMethodID = GetMethodIDOrDie(env, gBitmap_class, "getAllocationByteCount", "()I");
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java127 long nativeSize = NATIVE_ALLOCATION_SIZE + getAllocationByteCount();
209 * while {@link #getAllocationByteCount()} will reflect that of the initial
1398 * see {@link #getAllocationByteCount()}.
1414 * #getAllocationByteCount()}.</p>
1440 public final int getAllocationByteCount() { method in class:Bitmap
1442 Log.w(TAG, "Called getAllocationByteCount() on a recycle()'d bitmap! "

Completed in 89 milliseconds