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

  /frameworks/ex/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 152 final byte[] bitmapBytes = out.toByteArray();
155 final int orientation = Exif.getOrientation(bitmapBytes);
157 BitmapFactory.decodeByteArray(bitmapBytes, 0, bitmapBytes.length, opts);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
ImageUtils.java 161 final byte[] bitmapBytes = out.toByteArray();
164 final int orientation = Exif.getOrientation(bitmapBytes);
167 byteStream = new ByteArrayInputStream(bitmapBytes);
  /packages/apps/Contacts/src/com/android/contacts/
ContactPhotoManager.java 421 int bitmapBytes = 0;
431 bitmapBytes += b.getByteCount();
434 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = "
435 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, "
438 + "," + btk(safeDiv(bitmapBytes,numBitmaps)));
446 int bitmapBytes = 0;
449 bitmapBytes += b.getByteCount();
451 Log.d(TAG, "L2: " + btk(bitmapBytes) + ", " + numBitmaps + " bitmaps"
452 + ", avg: " + btk(safeDiv(bitmapBytes, numBitmaps)));
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 414 long bitmapBytes = getByteCount();
416 if (bufferBytes < bitmapBytes) {
424 position += bitmapBytes >> shift;
    [all...]
  /external/skia/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...]

Completed in 76 milliseconds