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

  /system/core/include/utils/
LinearAllocator.h 82 size_t mPageSize;
FileMap.h 131 static long mPageSize;
  /system/core/libutils/
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;
  /frameworks/av/media/libstagefright/
NuCachedSource2.cpp 53 size_t mPageSize;
65 : mPageSize(pageSize),
97 page->mData = malloc(mPageSize);

Completed in 51 milliseconds