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

12

/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/chromium_org/skia/ext/
H A Dvector_platform_device_skia.cc23 const SkISize& pageSize,
26 : SkPDFDevice(pageSize, contentSize, initialTransform) {
22 VectorPlatformDeviceSkia( const SkISize& pageSize, const SkISize& contentSize, const SkMatrix& initialTransform) argument
/external/chromium_org/third_party/sqlite/src/tool/
H A Dshowjournal.c12 static int pageSize = 1024; variable
89 pageSize =
102 aData = read_content(pageSize+8, iOfst);
129 cnt = (fileSize - sectorSize)/(pageSize+8);
134 iOfst += pageSize+8;
/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/chromium_org/third_party/sqlite/src/src/
H A Dtest2.c75 u32 pageSize; local
94 pageSize = test_pagesize;
95 sqlite3PagerSetPagesize(pPager, &pageSize, -1);
H A DbtreeInt.h221 #define MX_CELL_SIZE(pBt) ((int)(pBt->pageSize-8))
228 #define MX_CELL(pBt) ((pBt->pageSize-8)/6)
423 u32 pageSize; /* Total number of bytes on a page */ member in struct:BtShared
439 u8 *pTmpSpace; /* BtShared.pageSize bytes of space for tmp use */
H A Dpager.c666 int pageSize; /* Number of bytes in a page */ member in struct:Pager
684 char *pTmpSpace; /* Pager.pageSize bytes of space for tmp use */
722 ** the page number and the pPager->pageSize bytes of data for the page.
739 #define JOURNAL_PG_SZ(pPager) ((pPager->pageSize) + 8)
1132 szPage = pPager->pageSize;
1163 return pager_datahash(pPage->pPager->pageSize, (unsigned char *)pPage->pData);
1351 u32 nHeader = (u32)pPager->pageSize;/* Size of buffer pointed to by zHeader */
1412 put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize);
1435 ** database page size. Since the zHeader buffer is only Pager.pageSize
1527 ** journal header to zero. In this case, assume that the Pager.pageSize
3491 u32 pageSize = *pPageSize; local
6507 int i, pageSize, loadPages, rc; local
[all...]
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.cpp17 SkPDFDeviceFlattener::SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox) argument
18 : SkPDFDevice(SkSizeToISize(pageSize),
19 SkSizeToISize(pageSize),
H A DSkPDFDevice.cpp736 // TODO(vandebo) change pageSize to SkSize.
737 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
740 fPageSize(pageSize),
749 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
/external/skia/tests/
H A DPDFPrimitivesTest.cpp252 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height()); local
253 SkPDFDevice* dev = new SkPDFDevice(pageSize, pageSize, SkMatrix::I());
330 SkISize pageSize = SkISize::Make(100, 100); local
331 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
H A DCanvasTest.cpp760 SkISize pageSize = SkISize::Make(kWidth, kHeight); local
761 SkPDFDevice device(pageSize, pageSize, SkMatrix::I());
/external/chromium_org/third_party/WebKit/Source/core/loader/cache/
H A DMemoryCache.cpp509 int pageSize = (o->encodedSize() + o->overheadSize() + 4095) & ~4095; local
516 purgeableSize += purgeable ? pageSize : 0;
517 purgedSize += purged ? pageSize : 0;
/external/chromium_org/third_party/WebKit/Source/core/platform/sql/
H A DSQLiteDatabase.cpp162 return maxPageCount * pageSize();
170 int currentPageSize = pageSize();
191 int SQLiteDatabase::pageSize() function in class:WebCore::SQLiteDatabase
221 return freelistCount * pageSize();
236 return pageCount * pageSize();
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A DPoolAlloc.h197 size_t pageSize; // granularity of allocation from the OS member in class:TPoolAllocator
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFrame.cpp225 void Frame::setPrinting(bool printing, const FloatSize& pageSize, const FloatSize& originalPageSize, float maximumShrinkRatio, AdjustViewSizeOrNot shouldAdjustViewSize) argument
236 view()->forceLayoutForPagination(pageSize, originalPageSize, maximumShrinkRatio, shouldAdjustViewSize);
H A DPrintContext.cpp73 FloatSize pageSize = m_frame->resizePageRectsKeepingRatio(FloatSize(printRect.width(), printRect.height()), FloatSize(documentRect.width(), documentRect.height())); local
74 float pageWidth = pageSize.width();
75 float pageHeight = pageSize.height();
330 return String::number(style->pageSize().width().value()) + ' ' + String::number(style->pageSize().height().value());
342 IntSize pageSize(width, height);
343 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
345 return "(" + String::number(pageSize.width()) + ", " + String::number(pageSize.height()) + ") " +
H A DFrameView.cpp3026 void FrameView::forceLayoutForPagination(const FloatSize& pageSize, const FloatSize& originalPageSize, float maximumShrinkFactor, AdjustViewSizeOrNot shouldAdjustViewSize) argument
3031 float pageLogicalWidth = renderView->style()->isHorizontalWritingMode() ? pageSize.width() : pageSize.height();
3032 float pageLogicalHeight = renderView->style()->isHorizontalWritingMode() ? pageSize.height() : pageSize.width();
3049 int expectedPageWidth = std::min<float>(documentRect.width(), pageSize.width() * maximumShrinkFactor);
3050 int expectedPageHeight = std::min<float>(documentRect.height(), pageSize.height() * maximumShrinkFactor);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorIndexedDBAgent.cpp398 static PassRefPtr<OpenCursorCallback> create(InjectedScript injectedScript, PassRefPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize) argument
400 return adoptRef(new OpenCursorCallback(injectedScript, requestCallback, skipCount, pageSize));
472 OpenCursorCallback(InjectedScript injectedScript, PassRefPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize) argument
477 , m_pageSize(pageSize)
490 static PassRefPtr<DataLoader> create(ScriptExecutionContext* context, PassRefPtr<RequestDataCallback> requestCallback, const InjectedScript& injectedScript, const String& objectStoreName, const String& indexName, PassRefPtr<IDBKeyRange> idbKeyRange, int skipCount, unsigned pageSize) argument
492 return adoptRef(new DataLoader(context, requestCallback, injectedScript, objectStoreName, indexName, idbKeyRange, skipCount, pageSize));
531 DataLoader(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<RequestDataCallback> requestCallback, const InjectedScript& injectedScript, const String& objectStoreName, const String& indexName, PassRefPtr<IDBKeyRange> idbKeyRange, int skipCount, unsigned pageSize) argument
539 , m_pageSize(pageSize) { }
655 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<RequestDataCallback> requestCallback) argument
679 RefPtr<DataLoader> dataLoader = DataLoader::create(document, requestCallback, injectedScript, objectStoreName, indexName, idbKeyRange, skipCount, pageSize);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSelectElement.cpp537 int pageSize = 0; local
539 pageSize = toRenderListBox(renderer())->size() - 1; // -1 so we still show context.
545 int skipAmount = pageSize + ((direction == SkipForwards) ? startIndex : (edgeIndex - startIndex));
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp672 // TODO(vandebo) change pageSize to SkSize.
673 SkPDFDevice::SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, argument
676 fPageSize(pageSize),
685 fInitialTransform.setTranslate(0, SkIntToScalar(pageSize.fHeight));
/external/skia/gm/
H A Dgmmain.cpp622 SkISize pageSize = gm->getISize(); local
625 dev = new SkPDFDevice(pageSize, pageSize, initialTransform);
627 SkRect content = SkRect::MakeWH(SkIntToScalar(pageSize.width()),
628 SkIntToScalar(pageSize.height()));
630 content.intersect(0, 0, SkIntToScalar(pageSize.width()),
631 SkIntToScalar(pageSize.height()));
635 dev = new SkPDFDevice(pageSize, contentSize, initialTransform);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFrameImpl.cpp1462 void WebFrameImpl::pageSizeAndMarginsInPixels(int pageIndex, WebSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
1464 IntSize size = pageSize;
1466 pageSize = size;
/external/chromium_org/third_party/skia/src/device/xps/
H A DSkXPSDevice.cpp211 HRESULT SkXPSDevice::createXpsPage(const XPS_SIZE& pageSize, argument
223 HRM(this->fXpsFactory->CreatePage(&pageSize,
300 XPS_SIZE pageSize = { local
305 HRB(this->createXpsPage(pageSize, &page));
324 &pageSize,
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp211 HRESULT SkXPSDevice::createXpsPage(const XPS_SIZE& pageSize, argument
223 HRM(this->fXpsFactory->CreatePage(&pageSize,
300 XPS_SIZE pageSize = { local
305 HRB(this->createXpsPage(pageSize, &page));
324 &pageSize,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp1809 void Document::pageSizeAndMarginsInPixels(int pageIndex, IntSize& pageSize, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) argument
1814 int width = pageSize.width();
1815 int height = pageSize.height();
1828 LengthSize size = style->pageSize();
1838 pageSize = IntSize(width, height);

Completed in 674 milliseconds

12