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

  /system/core/libutils/
FileMap.cpp 47 /*static*/ long FileMap::mPageSize = -1;
92 if (mPageSize == -1) {
96 mPageSize = si.dwAllocationGranularity;
109 adjust = offset % mPageSize;
137 if (mPageSize == -1) {
138 mPageSize = sysconf(_SC_PAGESIZE);
139 if (mPageSize == -1) {
145 adjust = offset % mPageSize;
  /frameworks/base/libs/hwui/utils/
LinearAllocator.cpp 116 : mPageSize(INITIAL_PAGE_SIZE)
137 RM_ALLOCATION(mPageSize);
147 return ((char*)p) + mPageSize;
157 if (mCurrentPage && mPageSize < MAX_PAGE_SIZE) {
158 mPageSize = min(MAX_PAGE_SIZE, mPageSize * 2);
159 mPageSize = ALIGN(mPageSize);
161 mWastedSpace += mPageSize;
162 Page* p = newPage(mPageSize);
    [all...]
LinearAllocator.h 123 size_t mPageSize;
  /system/core/include/utils/
FileMap.h 121 static long mPageSize;
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 55 size_t mPageSize;
67 : mPageSize(pageSize),
99 page->mData = malloc(mPageSize);

Completed in 379 milliseconds