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

  /dalvik/libdex/
DexOptData.c 98 u4 roundedSize = (size + 8 + 7) & ~7;
99 const u4* pNextOpt = pOpt + (roundedSize / sizeof(u4));
  /packages/apps/Camera/src/com/android/camera/
Util.java 115 int roundedSize;
117 roundedSize = 1;
118 while (roundedSize < initialSize) {
119 roundedSize <<= 1;
122 roundedSize = (initialSize + 7) / 8 * 8;
125 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 133 milliseconds