HomeSort by relevance Sort by last modified time
    Searched refs:getByteCount (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/support/v4/honeycomb_mr1/android/support/v4/graphics/
BitmapCompatHoneycombMr1.java 26 return bitmap.getByteCount();
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ThumbnailCache.java 30 return value.getByteCount();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
CountingOutputStream.java 93 * See {@link #getByteCount()} for a method using a <code>long</code>.
99 long result = getByteCount();
134 public synchronized long getByteCount() {
ThresholdingOutputStream.java 184 public long getByteCount()
  /frameworks/av/media/mtp/
MtpStringBuffer.h 53 inline int getByteCount() const { return mByteCount; }
  /frameworks/opt/bitmap/src/com/android/bitmap/
ReusableBitmap.java 73 public int getByteCount() {
74 return bmp.getByteCount();
111 sb.append(bmp.getByteCount() >> 10);
141 public int getByteCount() {
UnrefedBitmapCache.java 73 return value.getByteCount();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
CountingInputStream.java 114 * See {@link #getByteCount()} for a method using a <code>long</code>.
120 long result = getByteCount();
155 public synchronized long getByteCount() {
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/
FaceSquareFilterTest.java 79 int[] pixels = new int[bitmap.getByteCount()];
158 int[] outputPixels = new int[outputBitmap.getByteCount()];
162 for ( int i = 0; i < outputBitmap.getByteCount(); i++) {
167 if (equalCount + (0.05f*outputBitmap.getByteCount()) < outputBitmap.getByteCount()) {
169 assertEquals(equalCount, outputBitmap.getByteCount());
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 177 int byteCount = rgbaBitmap.getByteCount();
193 int byteCount = result.getByteCount();
GLFrame.java 234 if (!setNativeBitmap(rgbaBitmap, rgbaBitmap.getByteCount())) {
  /packages/apps/Gallery2/src/com/android/photos/data/
SparseArrayBitmapPool.java 120 mSizeBytes -= n.bitmap.getByteCount();
170 int bytes = b.getByteCount();
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
BitmapTest.java 43 assertEquals("byteCount", 80000, bm1.getByteCount());
44 assertEquals("byteCount", 40000, bm2.getByteCount());
45 assertEquals("byteCount", 40000, bm3.getByteCount());
  /development/samples/training/ContactsList/src/com/example/android/contactslist/util/
ImageCache.java 140 return bitmap.getByteCount();
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 131 int nativeAllocationByteCount = buffer == null ? getByteCount() : 0;
198 * <p>The result of {@link #getByteCount()} will reflect the new configuration,
489 long pixelSize = getByteCount();
529 long bitmapBytes = getByteCount();
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 387 assertEquals(mBitmap.getByteCount(), alloc);
391 assertEquals(mBitmap.getByteCount(), alloc);
396 assertEquals(mBitmap.getByteCount(), 100);
498 assertEquals(mBitmap.getByteCount() * 8, alloc);
619 assertEquals(mBitmap.getByteCount() * 2, alloc);
644 assertEquals(mBitmap.getByteCount() * 2, alloc);
896 assertEquals(mBitmap.getByteCount() * 2, alloc);
    [all...]
BitmapFactoryTest.java 354 int originalSize = start.getByteCount();
362 assertEquals(originalSize, pass.getByteCount());
447 int originalSize = original.getByteCount();
456 assertEquals(originalSize, reduced.getByteCount() * 16);
465 int originalSize = original.getByteCount();
477 assertEquals(originalSize, doubleScaled.getByteCount());
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
RecycleBitmapPool.java 71 return bitmap.getByteCount();
BitmapDownloader.java 120 return bitmap.mBitmap.getByteCount();
  /packages/apps/Browser/src/com/android/browser/
DataController.java 202 if (mBuffer == null || mBuffer.limit() < capture.getByteCount()) {
203 mBuffer = ByteBuffer.allocate(capture.getByteCount());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
ContactPhotoManager.java 688 return value.getByteCount();
745 bitmapBytes += b.getByteCount();
763 bitmapBytes += b.getByteCount();
    [all...]
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 623 return bitmap.getByteCount();
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
MediaNotificationManager.java 91 return value.getByteCount();
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/
MediaNotificationManager.java 91 return value.getByteCount();
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 623 return bitmap.getByteCount();

Completed in 1001 milliseconds

1 2