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

  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 171 final byte[] bitmapBytes = out.toByteArray();
174 final int orientation = Exif.getOrientation(bitmapBytes);
177 byteStream = new ByteArrayInputStream(bitmapBytes);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 416 int bitmapBytes = 0;
426 bitmapBytes += b.getByteCount();
429 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = "
430 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, "
433 + "," + btk(safeDiv(bitmapBytes,numBitmaps)));
441 int bitmapBytes = 0;
444 bitmapBytes += b.getByteCount();
446 Log.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps"
447 + ", avg: " + btk(safeDiv(bitmapBytes, numBitmaps)));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 422 long bitmapBytes = getByteCount();
424 if (bufferBytes < bitmapBytes) {
432 position += bitmapBytes >> shift;
    [all...]
  /external/skia/legacy/src/core/
SkPicturePlayback.cpp 24 size_t overallBytes, bitmapBytes, matricesBytes,
26 int bitmaps = record.bitmaps(&bitmapBytes);
35 SkDebugf("bitmaps size %zd (bitmaps:%d) ", bitmapBytes, bitmaps);
143 bitmaps = fPlayback->bitmaps(&bitmapBytes);
150 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 246 milliseconds