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

  /packages/apps/Camera/src/com/android/camera/
Util.java 95 int roundedSize;
97 roundedSize = 1;
98 while (roundedSize < initialSize) {
99 roundedSize <<= 1;
102 roundedSize = (initialSize + 7) / 8 * 8;
105 return roundedSize;
  /packages/apps/Gallery3D/src/com/cooliris/media/
Utils.java 280 int roundedSize;
282 roundedSize = 1;
283 while (roundedSize < initialSize) {
284 roundedSize <<= 1;
287 roundedSize = (initialSize + 7) / 8 * 8;
290 return roundedSize;
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 235 int roundedSize;
237 roundedSize = 1;
238 while (roundedSize < initialSize) {
239 roundedSize <<= 1;
242 roundedSize = (initialSize + 7) / 8 * 8;
245 return roundedSize;
  /packages/apps/Gallery/src/com/android/camera/
Util.java 107 int roundedSize;
109 roundedSize = 1;
110 while (roundedSize < initialSize) {
111 roundedSize <<= 1;
114 roundedSize = (initialSize + 7) / 8 * 8;
117 return roundedSize;

Completed in 844 milliseconds