Searched defs:pageSize (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/libbcc/runtime/lib/
H A Denable_execute_stack.c38 const uintptr_t pageSize = 4096; local
42 const uintptr_t pageSize = sysconf(_SC_PAGESIZE);
45 const uintptr_t pageAlignMask = ~(pageSize-1);
48 unsigned char* endPage = (unsigned char*)((p+48+pageSize) & pageAlignMask);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDebug.java125 public long pageSize; field in class:SQLiteDebug.DbStats
136 public DbStats(String dbName, long pageCount, long pageSize, int lookaside, argument
139 this.pageSize = pageSize / 1024;
140 dbSize = (pageCount * pageSize) / 1024;
H A DSQLiteConnection.java1107 long pageSize = 0;
1110 pageSize = executeForLong("PRAGMA page_size;", null, null);
1114 dbStatsList.add(getMainDbStatsUnsafe(lookaside, pageCount, pageSize));
1126 pageSize = 0;
1129 pageSize = executeForLong("PRAGMA " + name + ".page_size;", null, null);
1137 dbStatsList.add(new DbStats(label, pageCount, pageSize, 0, 0, 0, 0));
1156 private DbStats getMainDbStatsUnsafe(int lookaside, long pageCount, long pageSize) { argument
1163 return new DbStats(label, pageCount, pageSize, lookaside,
/frameworks/compile/mclinker/include/mcld/MC/
H A DZOption.h58 uint64_t pageSize() const function in class:mcld::ZOption
/frameworks/av/media/libstagefright/
H A DNuCachedSource2.cpp32 PageCache(size_t pageSize);
64 PageCache::PageCache(size_t pageSize) argument
65 : mPageSize(pageSize),
H A DOggExtractor.cpp649 ssize_t pageSize; local
650 while ((pageSize = readPage(offset, &page)) > 0) {
659 offset += (size_t)pageSize;

Completed in 147 milliseconds