Home
last modified time | relevance | path

Searched refs:btk (Results 1 – 2 of 2) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/
DContactPhotoManager.java597 Log.d(TAG, "Cache size: " + btk(mBitmapHolderCache.maxSize()) in ContactPhotoManagerImpl()
598 + " + " + btk(mBitmapCache.maxSize())); in ContactPhotoManagerImpl()
603 private static String btk(int bytes) { in btk() method in ContactPhotoManagerImpl
632 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = " in dumpStats()
633 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, " in dumpStats()
635 + btk(safeDiv(rawBytes, numHolders)) in dumpStats()
636 + "," + btk(safeDiv(bitmapBytes,numBitmaps))); in dumpStats()
649 Log.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps" in dumpStats()
650 + ", avg: " + btk(safeDiv(bitmapBytes, numBitmaps))); in dumpStats()
855 Log.d(TAG, "inflateBitmap " + btk(bytes.length) + " -> " in inflateBitmap()
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
DPhotoManager.java226 LogUtils.d(TAG, "Cache size: " + btk(sBitmapHolderCache.maxSize()) in LogUtils.d()
227 + " + " + btk(sBitmapCache.maxSize())); in LogUtils.d()
528 + (holder.bytes == null ? "<null>" : btk(holder.bytes.length))); in cacheBitmapHolder()
584 "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = " in dumpStats()
585 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, " in dumpStats()
586 + numBitmaps + " bitmaps, avg: " + btk(safeDiv(rawBytes, numBitmaps))); in dumpStats()
596 LogUtils.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps" + ", avg: " in dumpStats()
597 + btk(safeDiv(bitmapBytes, numBitmaps))); in dumpStats()
602 private static String btk(int bytes) { in btk() method in PhotoManager