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

  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 112 : mPageSize(INITIAL_PAGE_SIZE)
143 return ((char*)p) + mPageSize;
153 if (mCurrentPage && mPageSize < MAX_PAGE_SIZE) {
154 mPageSize = min(MAX_PAGE_SIZE, mPageSize * 2);
155 mMaxAllocSize = mPageSize * MAX_WASTE_RATIO;
156 mPageSize = ALIGN(mPageSize);
158 mWastedSpace += mPageSize;
159 Page* p = newPage(mPageSize);
    [all...]
LinearAllocator.h 140 size_t mPageSize;
  /system/core/libutils/
FileMap.cpp 47 /*static*/ long FileMap::mPageSize = -1;
129 if (mPageSize == -1) {
133 mPageSize = si.dwAllocationGranularity;
146 adjust = offset % mPageSize;
174 if (mPageSize == -1) {
175 mPageSize = sysconf(_SC_PAGESIZE);
176 if (mPageSize == -1) {
182 adjust = offset % mPageSize;
  /system/core/include/utils/
FileMap.h 124 static long mPageSize;
  /frameworks/rs/cpu_ref/
rsCpuCore.h 258 long mPageSize;
rsCpuCore.cpp 244 mPageSize = sysconf(_SC_PAGE_SIZE);
245 // ALOGV("page size = %ld", mPageSize);
740 (unsigned(mtls->accumSize) + unsigned(mPageSize)-1) &
741 ~(unsigned(mPageSize)-1);
747 mtls->accumAlloc = static_cast<uint8_t *>(memalign(mPageSize, allocSize));
    [all...]
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 55 size_t mPageSize;
67 : mPageSize(pageSize),
99 page->mData = malloc(mPageSize);

Completed in 333 milliseconds