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

12

/external/webkit/Source/JavaScriptCore/wtf/
H A DPageBlock.cpp76 size_t pageSize() function in namespace:WTF
H A DStackBounds.cpp205 static inline void* getLowerStackBound(char* currentPage, DWORD pageSize) argument
209 if (currentPage >= reinterpret_cast<char*>(pageSize))
210 currentPage -= pageSize;
215 return currentPage + pageSize;
221 static inline void* getUpperStackBound(char* currentPage, DWORD pageSize) argument
225 currentPage += pageSize;
228 return currentPage - pageSize;
239 DWORD pageSize = systemInfo.dwPageSize; local
242 char* currentPage = reinterpret_cast<char*>(reinterpret_cast<DWORD>(thisFrame) & ~(pageSize - 1));
243 void* lowerStackBound = getLowerStackBound(currentPage, pageSize);
[all...]
/external/compiler-rt/lib/
H A Denable_execute_stack.c44 const uintptr_t pageSize = 4096; local
48 const uintptr_t pageSize = sysconf(_SC_PAGESIZE);
51 const uintptr_t pageAlignMask = ~(pageSize-1);
54 unsigned char* endPage = (unsigned char*)((p+TRAMPOLINE_SIZE+pageSize) & pageAlignMask);
/external/webkit/Source/WebKit2/Platform/gtk/
H A DSharedMemoryGtk.cpp80 unsigned pageSize = 0; local
82 return pageSize;
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocator.cpp34 size_t ExecutableAllocator::pageSize = 0; member in class:JSC::ExecutableAllocator
46 ExecutableAllocator::pageSize = 256 * 1024; member in class:JSC::ExecutableAllocator
48 ExecutableAllocator::pageSize = WTF::pageSize();
90 if (!pageSize)
96 intptr_t pageStartPtr = startPtr & ~(pageSize - 1);
101 size += (pageSize - 1);
102 size &= ~(pageSize - 1);
H A DExecutableAllocator.h69 #define JIT_ALLOCATOR_PAGE_SIZE (ExecutableAllocator::pageSize)
70 #define JIT_ALLOCATOR_LARGE_ALLOC_SIZE (ExecutableAllocator::pageSize * 4)
180 static size_t pageSize; member in class:JSC::ExecutableAllocator
183 if (!pageSize)
H A DExecutableAllocatorFixedVMPool.cpp496 ExecutableAllocator::pageSize = getpagesize(); member in class:JSC::ExecutableAllocator
/external/webkit/Source/WebKit2/Platform/win/
H A DSharedMemoryWin.cpp205 static unsigned pageSize = 0; local
207 if (!pageSize) {
210 pageSize = systemInfo.dwPageSize;
213 return pageSize;
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacterSet.java48 private int pageSize; field in class:BitmapCharacterSet
58 oc.write(pageSize, "pageSize", 0);
95 pageSize = ic.readInt("pageSize", 0);
204 ch.setPage(ch.getPage() + this.pageSize);
207 this.pageSize += styleSet.pageSize;
220 void setPageSize(int pageSize) { argument
221 this.pageSize
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DLinearAllocator.cpp90 void* end(int pageSize) argument
92 return (void*) (((unsigned)start()) + pageSize);
189 LinearAllocator::Page* LinearAllocator::newPage(size_t pageSize) argument
191 pageSize += sizeof(LinearAllocator::Page);
192 ADD_ALLOCATION(pageSize);
193 m_totalAllocated += pageSize;
195 void* buf = malloc(pageSize);
/external/webkit/Source/WebKit2/Platform/unix/
H A DSharedMemoryUnix.cpp230 static unsigned pageSize = 0; local
232 if (!pageSize)
233 pageSize = getpagesize();
235 return pageSize;
/external/webkit/Source/JavaScriptCore/heap/
H A DMarkStack.h109 static size_t pageSize() function in class:JSC::MarkStack
119 , m_allocated(MarkStack::pageSize())
170 ASSERT(0 == (size % MarkStack::pageSize()));
/external/webkit/Source/WebCore/platform/gtk/
H A DGtkVersioning.c33 gdouble stepIncrement, gdouble pageIncrement, gdouble pageSize)
42 "page-size", pageSize,
32 gtk_adjustment_configure(GtkAdjustment* adjustment, gdouble value, gdouble lower, gdouble upper, gdouble stepIncrement, gdouble pageIncrement, gdouble pageSize) argument
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.h197 size_t pageSize; // granularity of allocation from the OS member in class:TPoolAllocator
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.cpp597 int pageSize = (o->encodedSize() + o->overheadSize() + 4095) & ~4095; local
602 purgeableSize += purgeable ? pageSize : 0;
603 purgedSize += purged ? pageSize : 0;
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteDatabase.cpp150 return maxPageCount * pageSize();
158 int currentPageSize = pageSize();
179 int SQLiteDatabase::pageSize() function in class:WebCore::SQLiteDatabase
209 return freelistCount * pageSize();
224 return pageCount * pageSize();
/external/compiler-rt/lib/interception/mach_override/
H A Dmach_override.c185 vm_size_t pageSize; local
186 host_page_size( mach_host_self(), &pageSize ); local
187 uintptr_t page = (uintptr_t)address & ~(uintptr_t)(pageSize-1);
189 e |= mprotect((void *)page, pageSize, PROT_EXEC | PROT_READ | PROT_WRITE);
190 e |= msync((void *)page, pageSize, MS_INVALIDATE );
480 vm_size_t pageSize; local
481 err = host_page_size( mach_host_self(), &pageSize );
483 assert( sizeof( BranchIsland ) <= pageSize );
486 vm_address_t last = 0xfe000000 + pageSize;
501 err = vm_allocate( task_self, &page, pageSize,
550 vm_size_t pageSize; local
[all...]
/external/webkit/Source/WebCore/dom/
H A DSelectElement.cpp129 int pageSize = 0; local
131 pageSize = toRenderListBox(element->renderer())->size() - 1; // -1 so we still show context
137 int skipAmount = pageSize + ((direction == SkipForwards) ? startIndex : (edgeIndex - startIndex));
/external/webkit/Source/WebCore/page/
H A DFrame.cpp512 void Frame::setPrinting(bool printing, const FloatSize& pageSize, float maximumShrinkRatio, AdjustViewSizeOrNot shouldAdjustViewSize) argument
518 view()->forceLayoutForPagination(pageSize, maximumShrinkRatio, shouldAdjustViewSize);
H A DFrameView.cpp2528 void FrameView::forceLayoutForPagination(const FloatSize& pageSize, float maximumShrinkFactor, Frame::AdjustViewSizeOrNot shouldAdjustViewSize) argument
2534 float pageLogicalWidth = root->style()->isHorizontalWritingMode() ? pageSize.width() : pageSize.height();
2535 float pageLogicalHeight = root->style()->isHorizontalWritingMode() ? pageSize.height() : pageSize.width();
2551 root->setPageLogicalHeight(flooredPageLogicalWidth / pageSize.width() * pageSize.height());
/external/skia/src/pdf/
H A DSkPDFDevice.cpp506 // TODO(vandebo) change pageSize to SkSize.
507 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
510 fPageSize(pageSize),
517 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
/external/webkit/Source/WebCore/loader/
H A DFrameLoader.cpp3590 FloatSize pageSize = page->chrome()->pageRect().size(); local
3596 windowRect.setWidth(features.width + (windowRect.width() - pageSize.width()));
3598 windowRect.setHeight(features.height + (windowRect.height() - pageSize.height()));
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp1365 int WebFrameImpl::printBegin(const WebSize& pageSize, argument
1394 FloatRect rect(0, 0, static_cast<float>(pageSize.width),
1395 static_cast<float>(pageSize.height));
1449 WebSize& pageSize,
1455 IntSize size(pageSize.width, pageSize.height);
1462 pageSize = size;
1844 FloatSize pageSize(pageWidthInPixels, pageHeightInPixels);
1845 return PrintContext::pageNumberForElement(element, pageSize);
1448 pageSizeAndMarginsInPixels(int pageIndex, WebSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
/external/quake/quake/src/QW/scitech/include/
H A Dmgraph.h819 long pageSize; /* Number of bytes in a page */ member in struct:__anon11544
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DMGRAPH.H819 long pageSize; /* Number of bytes in a page */ member in struct:__anon11843

Completed in 463 milliseconds

12