HomeSort by relevance Sort by last modified time
    Searched refs:bitmapBytes (Results 1 - 5 of 5) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
PhotoManager.java 574 int bitmapBytes = 0;
584 "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = "
585 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, "
591 bitmapBytes = 0;
594 bitmapBytes += b.getByteCount();
596 LogUtils.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps" + ", avg: "
597 + btk(safeDiv(bitmapBytes, numBitmaps)));
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 619 int bitmapBytes = 0;
629 bitmapBytes += b.getByteCount();
632 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = "
633 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, "
636 + "," + btk(safeDiv(bitmapBytes,numBitmaps)));
644 int bitmapBytes = 0;
647 bitmapBytes += b.getByteCount();
649 Log.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps"
650 + ", avg: " + btk(safeDiv(bitmapBytes, numBitmaps)));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 528 long bitmapBytes = getByteCount();
530 if (bufferBytes < bitmapBytes) {
538 position += bitmapBytes >> shift;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPicturePlayback.cpp 33 size_t overallBytes, bitmapBytes, matricesBytes,
35 int bitmaps = record.bitmaps(&bitmapBytes);
44 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
129 bitmaps = fPlayback->bitmaps(&bitmapBytes);
136 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 33 size_t overallBytes, bitmapBytes, matricesBytes,
35 int bitmaps = record.bitmaps(&bitmapBytes);
44 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
129 bitmaps = fPlayback->bitmaps(&bitmapBytes);
136 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
    [all...]

Completed in 359 milliseconds