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

  /dalvik/libdex/
DexOptData.cpp 98 u4 roundedSize = (size + 8 + 7) & ~7;
99 const u4* pNextOpt = pOpt + (roundedSize / sizeof(u4));
  /frameworks/base/media/java/android/media/
ThumbnailUtils.java 260 int roundedSize;
262 roundedSize = 1;
263 while (roundedSize < initialSize) {
264 roundedSize <<= 1;
267 roundedSize = (initialSize + 7) / 8 * 8;
270 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;
  /packages/apps/LegacyCamera/src/com/android/camera/
Util.java 180 int roundedSize;
182 roundedSize = 1;
183 while (roundedSize < initialSize) {
184 roundedSize <<= 1;
187 roundedSize = (initialSize + 7) / 8 * 8;
190 return roundedSize;
  /packages/apps/Camera2/src/com/android/camera/util/
CameraUtil.java 206 int roundedSize;
208 roundedSize = 1;
209 while (roundedSize < initialSize) {
210 roundedSize <<= 1;
213 roundedSize = (initialSize + 7) / 8 * 8;
216 return roundedSize;
    [all...]

Completed in 198 milliseconds