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

  /external/skia/dm/
DMWriteTask.cpp 98 const size_t bitmapBytes = info.getSafeSize(rowBytes);
99 if (data->size() < bitmapBytes) {
104 const size_t offset = data->size() - bitmapBytes;
106 SkData::NewSubset(data, offset, bitmapBytes));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 735 int bitmapBytes = 0;
745 bitmapBytes += b.getByteCount();
748 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = "
749 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, "
752 + "," + btk(safeDiv(bitmapBytes,numBitmaps)));
760 int bitmapBytes = 0;
763 bitmapBytes += b.getByteCount();
765 Log.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps"
766 + ", avg: " + btk(safeDiv(bitmapBytes, numBitmaps)));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 529 long bitmapBytes = getByteCount();
531 if (bufferBytes < bitmapBytes) {
539 position += bitmapBytes >> shift;
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 76 size_t overallBytes, bitmapBytes, matricesBytes,
78 int bitmaps = record.bitmaps(&bitmapBytes);
87 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
150 bitmaps = fPlayback->bitmaps(&bitmapBytes);
157 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
    [all...]

Completed in 126 milliseconds