Searched defs:calculateInSampleSize (Results 1 - 2 of 2) sorted by relevance

/packages/apps/TV/src/com/android/tv/util/
H A DBitmapUtils.java75 calculateInSampleSize(bm.getWidth(), bm.getHeight(), maxWidth, maxHeight));
113 options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);
133 private static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, method in class:BitmapUtils
135 return calculateInSampleSize(options.outWidth, options.outHeight, reqWidth, reqHeight);
138 private static int calculateInSampleSize(int width, int height, int reqWidth, int reqHeight) { method in class:BitmapUtils
/packages/apps/Messaging/src/com/android/messaging/util/
H A DImageUtils.java192 public int calculateInSampleSize( method in class:ImageUtils

Completed in 190 milliseconds