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

  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODArena.h 139 size_t roundedSize = roundUp(sizeof(T), minAlignment<T>());
141 ptr = m_current->allocate(roundedSize);
144 if (roundedSize > m_currentChunkSize)
145 m_currentChunkSize = roundedSize;
148 ptr = m_current->allocate(roundedSize);
  /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 261 int roundedSize;
263 roundedSize = 1;
264 while (roundedSize < initialSize) {
265 roundedSize <<= 1;
268 roundedSize = (initialSize + 7) / 8 * 8;
271 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/Camera/src/com/android/camera/
Util.java 221 int roundedSize;
223 roundedSize = 1;
224 while (roundedSize < initialSize) {
225 roundedSize <<= 1;
228 roundedSize = (initialSize + 7) / 8 * 8;
231 return roundedSize;
  /packages/apps/Gallery2/src/com/android/camera/
Util.java 223 int roundedSize;
225 roundedSize = 1;
226 while (roundedSize < initialSize) {
227 roundedSize <<= 1;
230 roundedSize = (initialSize + 7) / 8 * 8;
233 return roundedSize;
  /external/webkit/Source/WebCore/platform/graphics/
ShadowBlur.cpp 76 IntSize roundedSize(roundUpToMultipleOf32(size.width()), roundUpToMultipleOf32(size.height()));
78 m_imageBuffer = ImageBuffer::create(roundedSize);
    [all...]

Completed in 256 milliseconds