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

  /external/swiftshader/src/Common/
Memory.cpp 118 size_t roundedSize = (bytes + pageSize - 1) & ~(pageSize - 1);
119 void *memory = allocate(roundedSize, pageSize);
127 if(prctl(ANDROID_PR_SET_VMA, ANDROID_PR_SET_VMA_ANON_NAME, memory, roundedSize, name) == -1)
129 ALOGE("prctl failed %p 0x%zx (%s)", memory, roundedSize, strerror(errno));
  /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 256 int roundedSize;
258 roundedSize = 1;
259 while (roundedSize < initialSize) {
260 roundedSize <<= 1;
263 roundedSize = (initialSize + 7) / 8 * 8;
266 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 969 milliseconds