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

  /external/webkit/JavaScriptCore/jit/
ExecutableAllocator.cpp 34 size_t ExecutableAllocator::pageSize = 0;
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;
ExecutableAllocatorPosix.cpp 42 ExecutableAllocator::pageSize = getpagesize();
65 if (!pageSize)
71 intptr_t pageStartPtr = startPtr & ~(pageSize - 1);
76 size += (pageSize - 1);
77 size &= ~(pageSize - 1);
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();
  /external/webkit/JavaScriptCore/runtime/
MarkStack.h 92 static size_t pageSize()
102 , m_allocated(MarkStack::pageSize())
153 ASSERT(0 == (size % MarkStack::pageSize()));
  /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;
  /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();
  /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...]
  /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++) {
  /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...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 569 milliseconds