Home
last modified time | relevance | path

Searched refs:pageSize (Results 1 – 9 of 9) sorted by relevance

/frameworks/compile/libbcc/runtime/lib/
Denable_execute_stack.c38 const uintptr_t pageSize = 4096; in __enable_execute_stack() local
42 const uintptr_t pageSize = sysconf(_SC_PAGESIZE); in __enable_execute_stack()
45 const uintptr_t pageAlignMask = ~(pageSize-1); in __enable_execute_stack()
48 unsigned char* endPage = (unsigned char*)((p+48+pageSize) & pageAlignMask); in __enable_execute_stack()
/frameworks/base/core/java/android/database/sqlite/
DSQLiteDebug.java125 public long pageSize; field in SQLiteDebug.DbStats
136 public DbStats(String dbName, long pageCount, long pageSize, int lookaside, in DbStats() argument
139 this.pageSize = pageSize / 1024; in DbStats()
140 dbSize = (pageCount * pageSize) / 1024; in DbStats()
DSQLiteConnection.java1107 long pageSize = 0; in collectDbStats() local
1110 pageSize = executeForLong("PRAGMA page_size;", null, null); in collectDbStats()
1114 dbStatsList.add(getMainDbStatsUnsafe(lookaside, pageCount, pageSize)); in collectDbStats()
1126 pageSize = 0; in collectDbStats()
1129 pageSize = executeForLong("PRAGMA " + name + ".page_size;", null, null); in collectDbStats()
1137 dbStatsList.add(new DbStats(label, pageCount, pageSize, 0, 0, 0, 0)); in collectDbStats()
1156 private DbStats getMainDbStatsUnsafe(int lookaside, long pageCount, long pageSize) { in getMainDbStatsUnsafe() argument
1163 return new DbStats(label, pageCount, pageSize, lookaside, in getMainDbStatsUnsafe()
DSQLiteDatabase.java892 long pageSize = getPageSize(); in setMaximumSize() local
893 long numPages = numBytes / pageSize; in setMaximumSize()
895 if ((numBytes % pageSize) != 0) { in setMaximumSize()
900 return newPageCount * pageSize; in setMaximumSize()
/frameworks/compile/mclinker/lib/MC/
DMCLDOptions.cpp142 m_CommPageSize = pOption.pageSize(); in addZOption()
145 m_MaxPageSize = pOption.pageSize(); in addZOption()
/frameworks/compile/mclinker/include/mcld/MC/
DZOption.h58 uint64_t pageSize() const in pageSize() function
/frameworks/av/media/libstagefright/
DNuCachedSource2.cpp32 PageCache(size_t pageSize);
64 PageCache::PageCache(size_t pageSize) in PageCache() argument
65 : mPageSize(pageSize), in PageCache()
DOggExtractor.cpp649 ssize_t pageSize; in buildTableOfContents() local
650 while ((pageSize = readPage(offset, &page)) > 0) { in buildTableOfContents()
659 offset += (size_t)pageSize; in buildTableOfContents()
/frameworks/base/core/java/android/app/
DActivityThread.java1000 pw.print(','); pw.print(dbStats.pageSize); in dumpMemInfo()
1073 (dbStats.pageSize > 0) ? String.valueOf(dbStats.pageSize) : " ", in dumpMemInfo()