HomeSort by relevance Sort by last modified time
    Searched full:roundedsize (Results 1 - 6 of 6) 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);
  /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;
  /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 250 int roundedSize;
252 roundedSize = 1;
253 while (roundedSize < initialSize) {
254 roundedSize <<= 1;
257 roundedSize = (initialSize + 7) / 8 * 8;
260 return roundedSize;
  /packages/apps/Camera/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;
  /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 560 milliseconds