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

  /system/core/libutils/
LinearAllocator.cpp 111 : mPageSize(INITIAL_PAGE_SIZE)
127 RM_ALLOCATION(mPageSize);
137 return ((char*)p) + mPageSize;
147 if (mCurrentPage && mPageSize < MAX_PAGE_SIZE) {
148 mPageSize = min(MAX_PAGE_SIZE, mPageSize * 2);
149 mPageSize = ALIGN(mPageSize);
151 mWastedSpace += mPageSize;
152 Page* p = newPage(mPageSize);
    [all...]
FileMap.cpp 47 /*static*/ long FileMap::mPageSize = -1;
98 if (mPageSize == -1) {
102 mPageSize = si.dwAllocationGranularity;
115 adjust = offset % mPageSize;
145 if (mPageSize == -1) {
147 mPageSize = sysconf(_SC_PAGESIZE);
148 if (mPageSize == -1) {
154 mPageSize = 4096;
158 adjust = offset % mPageSize;
  /system/core/include/utils/
FileMap.h 131 static long mPageSize;
LinearAllocator.h 82 size_t mPageSize;
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 55 size_t mPageSize;
67 : mPageSize(pageSize),
99 page->mData = malloc(mPageSize);

Completed in 923 milliseconds