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

1 2 3

  /external/compiler-rt/lib/builtins/
enable_execute_stack.c 44 /* On Darwin, pagesize is always 4096 bytes */
45 const uintptr_t pageSize = 4096;
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/
PoolAlloc.cpp 54 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; // make next allocation come from a new pag
    [all...]
PoolAlloc.h 197 size_t pageSize; // granularity of allocation from the OS
  /external/chromium_org/third_party/sqlite/src/tool/
showjournal.c 12 static int pageSize = 1024;
89 pageSize =
102 aData = read_content(pageSize+8, iOfst);
129 cnt = (fileSize - sectorSize)/(pageSize+8);
134 iOfst += pageSize+8;
spaceanal.tcl 34 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...]
fragck.tcl 73 set pageSize [db eval {PRAGMA page_size}]
  /external/chromium_org/skia/ext/
vector_platform_device_skia.cc 23 const SkISize& pageSize,
26 : SkPDFDevice(pageSize, contentSize, initialTransform) {
vector_platform_device_skia.h 23 SK_API VectorPlatformDeviceSkia(const SkISize& pageSize,
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
InspectorIndexedDBAgent.h 59 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;
InspectorIndexedDBAgent.cpp 391 static PassRefPtr<OpenCursorCallback> create(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize)
393 return adoptRef(new OpenCursorCallback(scriptState, requestCallback, skipCount, pageSize));
473 OpenCursorCallback(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, int skipCount, unsigned pageSize)
478 , m_pageSize(pageSize)
492 static PassRefPtr<DataLoader> create(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String& indexName, IDBKeyRange* idbKeyRange, int skipCount, unsigned pageSize)
494 return adoptRef(new DataLoader(scriptState, requestCallback, objectStoreName, indexName, idbKeyRange, skipCount, pageSize));
532 DataLoader(ScriptState* scriptState, PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback, const String& objectStoreName, const String& indexName, IDBKeyRange* idbKeyRange, int skipCount, unsigned pageSize)
539 , m_pageSize(pageSize)
666 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, const PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback)
684 RefPtr<DataLoader> dataLoader = DataLoader::create(scriptState, requestCallback, objectStoreName, indexName, idbKeyRange, skipCount, pageSize);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 72 FloatSize pageSize = m_frame->resizePageRectsKeepingRatio(FloatSize(printRect.width(), printRect.height()), FloatSize(documentRect.width(), documentRect.height()));
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/
btreeInt.h 198 ** filled with data (pagesize - 4 bytes). The last page can have as little
221 #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 */
439 u8 *pTmpSpace; /* BtShared.pageSize bytes of space for tmp use */
pager.c 666 int pageSize; /* Number of bytes in a page */
    [all...]
pager.h 53 #define PAGER_MJ_PGNO(x) ((Pgno)((PENDING_BYTE/((x)->pageSize))+1))
btree.c     [all...]
test2.c 75 u32 pageSize;
94 pageSize = test_pagesize;
95 sqlite3PagerSetPagesize(pPager, &pageSize, -1);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
IndexedDBViews.js 291 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/webdatabase/sqlite/
SQLiteDatabase.cpp 121 int currentPageSize = pageSize();
142 int SQLiteDatabase::pageSize()
172 return freelistCount * pageSize();
187 return pageCount * pageSize();
SQLiteDatabase.h 123 int pageSize();
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDeviceFlattener.h 25 SK_API SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox = NULL);
SkPDFDeviceFlattener.cpp 15 SkPDFDeviceFlattener::SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox)
16 : SkPDFDevice(SkSizeToISize(pageSize),
17 SkSizeToISize(pageSize),
  /external/chromium_org/third_party/skia/tests/
PDFPrimitivesTest.cpp 253 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height());
254 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
331 SkISize pageSize = SkISize::Make(100, 100);
332 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
469 SkISize pageSize = SkISize::Make(100, 100);
470 SkAutoTUnref<SkPDFDevice> device(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 356 * @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/chromium_org/win8/metro_driver/
print_document_source.h 107 D2D1_SIZE_F pageSize);
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.h 126 void setPrinting(bool printing, const FloatSize& pageSize, const FloatSize& originalPageSize, float maximumShrinkRatio);

Completed in 531 milliseconds

1 2 3