Searched refs:pageSize (Results 1 - 25 of 79) sorted by relevance

1234

/external/compiler-rt/lib/builtins/
H A Denable_execute_stack.c45 const uintptr_t pageSize = 4096; local
49 const uintptr_t pageSize = sysconf(_SC_PAGESIZE);
52 const uintptr_t pageAlignMask = ~(pageSize-1);
55 unsigned char* endPage = (unsigned char*)((p+TRAMPOLINE_SIZE+pageSize) & pageAlignMask);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DPoolAlloc.cpp54 pageSize(growthIncrement),
65 if (pageSize < 4*1024)
66 pageSize = 4*1024;
72 currentPageOffset = pageSize;
162 currentPageOffset = pageSize;
229 if (allocationSize <= pageSize - currentPageOffset) {
240 if (allocationSize > pageSize - headerSkip) {
255 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
258 currentPageOffset = pageSize; // mak
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/data/
H A Ddocument_info.js142 get pageSize() {
203 * @param {!print_preview.Size} pageSize Size of the pages of the document
210 printableArea, pageSize, hasCssMediaStyles, margins) {
213 !this.pageSize_.equals(pageSize) ||
217 this.pageSize_ = pageSize;
/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;
H A Dfragck.tcl73 set pageSize [db eval {PRAGMA page_size}]
H A Dspaceanal.tcl34 set pageSize [db one {PRAGMA page_size}]
203 global pageSize file_pgcnt
252 set storage [expr {$total_pages*$pageSize}]
297 [percent $int_unused [expr {$int_pages*$pageSize}] {of index space}]
301 [percent $leaf_unused [expr {$leaf_pages*$pageSize}] {of primary space}]
303 [percent $ovfl_unused [expr {$ovfl_pages*$pageSize}] {of overflow space}]
315 proc autovacuum_overhead {filePages pageSize} {
330 set ptrsPerPage [expr double($pageSize/5)]
340 # pageSize: Size of each page in bytes.
361 set file_pgcnt [expr {$file_bytes/$pageSize}]
[all...]
/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
H A Dvector_platform_device_skia.h23 SK_API VectorPlatformDeviceSkia(const SkISize& pageSize,
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/
H A Dlandscape.js94 (doc.pageSize.width > doc.pageSize.height) :
H A Dcustom_margins.js153 max = this.getDocumentInfoInternal().pageSize.height - oppositeMargin -
156 max = this.getDocumentInfoInternal().pageSize.width - oppositeMargin -
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.cpp72 FloatSize pageSize = m_frame->resizePageRectsKeepingRatio(FloatSize(printRect.width(), printRect.height()), FloatSize(documentRect.width(), documentRect.height())); local
73 float pageWidth = pageSize.width();
74 float pageHeight = pageSize.height();
311 return String::number(style->pageSize().width().value()) + ' ' + String::number(style->pageSize().height().value());
323 IntSize pageSize(width, height);
324 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
326 return "(" + String::number(pageSize.width()) + ", " + String::number(pageSize.height()) + ") " +
/external/chromium_org/third_party/sqlite/src/src/
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)
1122 szPage = pPager->pageSize;
1153 return pager_datahash(pPage->pPager->pageSize, (unsigned char *)pPage->pData);
1341 u32 nHeader = (u32)pPager->pageSize;/* Size of buffer pointed to by zHeader */
1402 put32bits(&zHeader[sizeof(aJournalMagic)+16], pPager->pageSize);
1425 ** database page size. Since the zHeader buffer is only Pager.pageSize
1517 ** journal header to zero. In this case, assume that the Pager.pageSize
3481 u32 pageSize = *pPageSize; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DIndexedDBViews.js291 var pageSize = this._pageSize;
296 if (!force && this._lastKey === key && this._lastPageSize === pageSize && this._lastSkipCount === skipCount)
299 if (this._lastKey !== key || this._lastPageSize !== pageSize) {
304 this._lastPageSize = pageSize;
335 this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
337 this._model.loadObjectStoreData(this._databaseId, this._objectStore.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DInspectorIndexedDBAgent.h59 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtrWillBeRawPtr<RequestDataCallback>) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteDatabase.cpp121 int currentPageSize = pageSize();
142 int SQLiteDatabase::pageSize() function in class:blink::SQLiteDatabase
172 return freelistCount * pageSize();
187 return pageCount * pageSize();
H A DSQLiteDatabase.h123 int pageSize();
/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFDeviceFlattener.h25 SK_API SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox = NULL);
H A DSkPDFDeviceFlattener.cpp15 SkPDFDeviceFlattener::SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox) argument
16 : SkPDFDevice(SkSizeToISize(pageSize),
17 SkSizeToISize(pageSize),
/external/skia/src/pdf/
H A DSkPDFDeviceFlattener.h25 SK_API SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox = NULL);
H A DSkPDFDeviceFlattener.cpp15 SkPDFDeviceFlattener::SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox) argument
16 : SkPDFDevice(SkSizeToISize(pageSize),
17 SkSizeToISize(pageSize),
/external/chromium_org/third_party/skia/tests/
H A DPDFPrimitivesTest.cpp253 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height()); local
254 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
331 SkISize pageSize = SkISize::Make(100, 100); local
332 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
469 SkISize pageSize = SkISize::Make(100, 100); local
470 SkAutoTUnref<SkPDFDevice> device(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DIndexedDBModel.js356 * @param {number} pageSize
359 loadObjectStoreData: function(databaseId, objectStoreName, idbKeyRange, skipCount, pageSize, callback)
361 this._requestData(databaseId, databaseId.name, objectStoreName, "", idbKeyRange, skipCount, pageSize, callback);
370 * @param {number} pageSize
373 loadIndexData: function(databaseId, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
375 this._requestData(databaseId, databaseId.name, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback);
385 * @param {number} pageSize
388 _requestData: function(databaseId, databaseName, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
416 this._agent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipCount, pageSize, keyRange ? keyRange : undefined, innerCallback.bind(this));
/external/skia/tests/
H A DPDFPrimitivesTest.cpp252 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height()); local
253 SkAutoTUnref<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()));
/external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/js/
H A Dnheap.js90 pageSize: 25});

Completed in 542 milliseconds

1234