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

  /external/webkit/JavaScriptCore/jit/
ExecutableAllocator.cpp 34 size_t ExecutableAllocator::pageSize = 0;
ExecutableAllocatorPosix.cpp 42 ExecutableAllocator::pageSize = getpagesize();
65 if (!pageSize)
71 intptr_t pageStartPtr = startPtr & ~(pageSize - 1);
76 size += (pageSize - 1);
77 size &= ~(pageSize - 1);
ExecutableAllocatorSymbian.cpp 40 // To mitigate this limitation increase the pagesize to
42 ExecutableAllocator::pageSize = MOVING_MEM_PAGE_SIZE;
46 ExecutableAllocator::pageSize = page_size;
ExecutableAllocatorWin.cpp 40 ExecutableAllocator::pageSize = system_info.dwPageSize;
ExecutableAllocator.h 52 #define JIT_ALLOCATOR_PAGE_SIZE (ExecutableAllocator::pageSize)
53 #define JIT_ALLOCATOR_LARGE_ALLOC_SIZE (ExecutableAllocator::pageSize * 4)
145 static size_t pageSize;
148 if (!pageSize)
ExecutableAllocatorFixedVMPool.cpp 421 ExecutableAllocator::pageSize = getpagesize();
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 127 public long pageSize;
135 public DbStats(String dbName, long pageCount, long pageSize, int lookaside) {
137 this.pageSize = pageSize / 1024;
138 dbSize = (pageCount * pageSize) / 1024;
SQLiteDatabase.java     [all...]
  /external/webkit/JavaScriptCore/runtime/
MarkStack.h 92 static size_t pageSize()
102 , m_allocated(MarkStack::pageSize())
153 ASSERT(0 == (size % MarkStack::pageSize()));
Collector.cpp 244 #error Need to initialize pagesize safely.
246 static size_t pagesize = getpagesize();
249 if (BLOCK_SIZE > pagesize)
250 extra = BLOCK_SIZE - pagesize;
505 static DWORD pageSize = 0;
506 if (!pageSize) {
509 pageSize = systemInfo.dwPageSize;
513 register char* currentPage = (char*)((DWORD)thisFrame & ~(pageSize - 1));
517 if (currentPage >= (char*)pageSize)
518 currentPage -= pageSize;
    [all...]
  /external/webkit/WebCore/platform/sql/
SQLiteDatabase.cpp 108 int64_t size = statement.getColumnInt64(0) * pageSize();
119 int currentPageSize = pageSize();
136 int SQLiteDatabase::pageSize()
159 int64_t size = statement.getColumnInt64(0) * pageSize();
SQLiteDatabase.h 116 int pageSize();
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 346 int pageSize = mDecInfo.mPageStart.get(mPageNo + 1)
348 if (mActiveCandInPage + 1 < pageSize) {
602 int pageSize = mDecInfo.mPageStart.get(mPageNo + 1) - pageStart;
603 if (mCandRects.size() < pageSize) {
610 for (int i = 0; i < pageSize; i++) {
  /frameworks/base/media/libstagefright/
NuCachedSource2.cpp 29 PageCache(size_t pageSize);
61 PageCache::PageCache(size_t pageSize)
62 : mPageSize(pageSize),
  /external/webkit/WebKit/chromium/public/
WebFrame.h 368 // Reformats the WebFrame for printing. pageSize is the page size in
371 virtual int printBegin(const WebSize& pageSize) = 0;
  /external/webkit/WebCore/loader/
Cache.cpp 657 int pageSize = (o->encodedSize() + o->overheadSize() + 4095) & ~4095;
662 purgeableSize += purgeable ? pageSize : 0;
663 purgedSize += purged ? pageSize : 0;
FrameLoader.cpp 308 FloatSize pageSize = page->chrome()->pageRect().size();
314 windowRect.setWidth(features.width + (windowRect.width() - pageSize.width()));
316 windowRect.setHeight(features.height + (windowRect.height() - pageSize.height()));
    [all...]
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 145 virtual int printBegin(const WebSize& pageSize);
WebFrameImpl.cpp     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /frameworks/base/core/java/android/app/
ActivityThread.java 768 printRow(pw, DB_INFO_FORMAT, dbStats.pageSize, dbStats.dbSize,
823 printRow(pw, DB_INFO_FORMAT, dbStats.pageSize, dbStats.dbSize,
    [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 819 long pageSize; /* Number of bytes in a page */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 819 long pageSize; /* Number of bytes in a page */
    [all...]

Completed in 485 milliseconds