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

1 2 3

  /external/compiler-rt/lib/
enable_execute_stack.c 43 /* On Darwin, pagesize is always 4096 bytes */
44 const uintptr_t pageSize = 4096;
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/JavaScriptCore/jit/
ExecutableAllocator.cpp 34 size_t ExecutableAllocator::pageSize = 0;
43 // To mitigate this limitation increase the pagesize to allocate
46 ExecutableAllocator::pageSize = 256 * 1024;
48 ExecutableAllocator::pageSize = WTF::pageSize();
90 if (!pageSize)
96 intptr_t pageStartPtr = startPtr & ~(pageSize - 1);
101 size += (pageSize - 1);
102 size &= ~(pageSize - 1);
ExecutableAllocator.h 69 #define JIT_ALLOCATOR_PAGE_SIZE (ExecutableAllocator::pageSize)
70 #define JIT_ALLOCATOR_LARGE_ALLOC_SIZE (ExecutableAllocator::pageSize * 4)
180 static size_t pageSize;
183 if (!pageSize)
  /external/webkit/Source/JavaScriptCore/wtf/
PageBlock.h 31 size_t pageSize();
32 inline bool isPageAligned(void* address) { return !(reinterpret_cast<intptr_t>(address) & (pageSize() - 1)); }
33 inline bool isPageAligned(size_t size) { return !(size & (pageSize() - 1)); }
78 using WTF::pageSize;
StackBounds.cpp 205 static inline void* getLowerStackBound(char* currentPage, DWORD pageSize)
209 if (currentPage >= reinterpret_cast<char*>(pageSize))
210 currentPage -= pageSize;
215 return currentPage + pageSize;
221 static inline void* getUpperStackBound(char* currentPage, DWORD pageSize)
225 currentPage += pageSize;
228 return currentPage - pageSize;
239 DWORD pageSize = systemInfo.dwPageSize;
242 char* currentPage = reinterpret_cast<char*>(reinterpret_cast<DWORD>(thisFrame) & ~(pageSize - 1));
243 void* lowerStackBound = getLowerStackBound(currentPage, pageSize);
    [all...]
PageAllocatorSymbian.h 37 size_t pageSize();
PageBlock.cpp 76 size_t pageSize()
PageAllocationAligned.cpp 53 size_t alignmentDelta = alignment - pageSize();
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 125 public long pageSize;
136 public DbStats(String dbName, long pageCount, long pageSize, int lookaside,
139 this.pageSize = pageSize / 1024;
140 dbSize = (pageCount * pageSize) / 1024;
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp 75 pageSize(growthIncrement),
86 if (pageSize < 4*1024)
87 pageSize = 4*1024;
93 currentPageOffset = pageSize;
176 currentPageOffset = pageSize;
240 if (currentPageOffset + allocationSize <= pageSize) {
251 if (allocationSize + headerSkip > pageSize) {
262 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
265 currentPageOffset = pageSize; // make next allocation come from a new pag
    [all...]
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 62 int pageSize = (int) Libcore.os.sysconf(_SC_PAGE_SIZE);
63 int pageOffset = (int) (address % pageSize);
66 int pageCount = (int) ((size + pageSize - 1) / pageSize);
  /external/webkit/Source/WebKit2/Platform/gtk/
SharedMemoryGtk.cpp 80 unsigned pageSize = 0;
82 return pageSize;
  /frameworks/native/libs/utils/
LinearAllocator.cpp 101 void* end(int pageSize) {
102 return (void*) (((size_t)start()) + pageSize);
194 LinearAllocator::Page* LinearAllocator::newPage(size_t pageSize) {
195 pageSize = ALIGN(pageSize + sizeof(LinearAllocator::Page));
196 ADD_ALLOCATION(pageSize);
197 mTotalAllocated += pageSize;
199 void* buf = malloc(pageSize);
  /external/skia/tools/
PdfRenderer.cpp 37 SkISize pageSize = SkISize::Make(width, height);
38 fPDFDevice = SkNEW_ARGS(SkPDFDevice, (pageSize, pageSize, SkMatrix::I()));
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacterSet.java 48 private int pageSize;
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) {
221 this.pageSize = pageSize;
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 58 uint64_t pageSize() const
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 205 static unsigned pageSize = 0;
207 if (!pageSize) {
210 pageSize = systemInfo.dwPageSize;
213 return pageSize;
  /frameworks/native/include/utils/
LinearAllocator.h 76 Page* newPage(size_t pageSize);
  /external/webkit/Source/WebKit/mac/WebView/
WebFramePrivate.h 155 - (NSArray *)_computePageRectsWithPrintScaleFactor:(float)printWidthScaleFactor pageSize:(NSSize)pageSize;
  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 162 m_CommPageSize = pOption.pageSize();
165 m_MaxPageSize = pOption.pageSize();
  /external/webkit/Source/WebCore/platform/sql/
SQLiteDatabase.h 140 int pageSize();
SQLiteDatabase.cpp 150 return maxPageCount * pageSize();
158 int currentPageSize = pageSize();
179 int SQLiteDatabase::pageSize()
209 return freelistCount * pageSize();
224 return pageCount * pageSize();
  /external/webkit/Source/WebKit2/Platform/unix/
SharedMemoryUnix.cpp 230 static unsigned pageSize = 0;
232 if (!pageSize)
233 pageSize = getpagesize();
235 return pageSize;
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api_ex.h 61 uint32_t pageSize;
  /external/webkit/Source/WebCore/page/
PrintContext.cpp 294 return makeString(String::number(style->pageSize().width().value()), ' ', String::number(style->pageSize().height().value()));
306 IntSize pageSize(width, height);
307 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
310 return makeString('(', String::number(pageSize.width()), ", ", String::number(pageSize.height()), ") ") +

Completed in 1442 milliseconds

1 2 3