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 40 /*static*/ long FileMap::mPageSize = -1;
99 if (mPageSize == -1) {
103 mPageSize = si.dwAllocationGranularity;
116 adjust = offset % mPageSize;
146 if (mPageSize == -1) {
148 mPageSize = sysconf(_SC_PAGESIZE);
149 if (mPageSize == -1) {
155 mPageSize = 4096;
159 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 53 size_t mPageSize;
65 : mPageSize(pageSize),
97 page->mData = malloc(mPageSize);

Completed in 174 milliseconds