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

1 2 3 4

  /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);
  /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/chromium_org/third_party/angle/src/compiler/translator/
PoolAlloc.cpp 53 pageSize(growthIncrement),
64 if (pageSize < 4*1024)
65 pageSize = 4*1024;
71 currentPageOffset = pageSize;
161 currentPageOffset = pageSize;
228 if (allocationSize <= pageSize - currentPageOffset) {
239 if (allocationSize > pageSize - headerSkip) {
254 new(memory) tHeader(inUseList, (numBytesToAlloc + pageSize - 1) / pageSize);
257 currentPageOffset = pageSize; // make next allocation come from a new pag
    [all...]
  /libcore/luni/src/main/java/java/nio/
MappedByteBuffer.java 64 int pageSize = (int) Libcore.os.sysconf(_SC_PAGE_SIZE);
65 int pageOffset = (int) (address % pageSize);
68 int pageCount = (int) ((size + pageSize - 1) / pageSize);
  /system/core/libutils/
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/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;
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 54 uint64_t pageSize() const { return m_PageSize; }
  /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 58 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<RequestDataCallback>) OVERRIDE;
  /system/core/include/utils/
LinearAllocator.h 76 Page* newPage(size_t pageSize);
  /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();
301 return String::number(style->pageSize().width().value()) + ' ' + String::number(style->pageSize().height().value());
313 IntSize pageSize(width, height);
314 frame->document()->pageSizeAndMarginsInPixels(pageNumber, pageSize, marginTop, marginRight, marginBottom, marginLeft);
316 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 */
  /hardware/intel/common/libwsbm/src/
wsbm_ttmpool.c 93 unsigned int pageSize;
117 unsigned pageSize = ttmPool->pageSize;
123 if ((alignment > pageSize) && (alignment % pageSize))
136 arg.req.page_alignment = alignment / pageSize;
505 ttmPool->pageSize = getpagesize();
538 unsigned pageSize = ttmPool->pageSize;
544 if ((alignment > pageSize) && (alignment % pageSize)
    [all...]
  /frameworks/compile/mclinker/lib/Core/
GeneralOptions.cpp 142 m_CommPageSize = pOption.pageSize();
145 m_MaxPageSize = pOption.pageSize();
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteDatabase.cpp 142 int currentPageSize = pageSize();
163 int SQLiteDatabase::pageSize()
193 return freelistCount * pageSize();
208 return pageCount * pageSize();
SQLiteDatabase.h 126 int pageSize();
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDeviceFlattener.h 25 SK_API SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox = NULL);
  /external/skia/src/pdf/
SkPDFDeviceFlattener.h 25 SK_API SkPDFDeviceFlattener(const SkSize& pageSize, const SkRect* trimBox = NULL);
  /hardware/ti/omap4-aah/security/tf_sdk/include/
tee_client_api_ex.h 61 uint32_t pageSize;
  /hardware/ti/omap4xxx/security/tf_sdk/include/
tee_client_api_ex.h 61 uint32_t pageSize;
  /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/devtools/front_end/sdk/
IndexedDBModel.js 345 * @param {number} pageSize
348 loadObjectStoreData: function(databaseId, objectStoreName, idbKeyRange, skipCount, pageSize, callback)
350 this._requestData(databaseId, databaseId.name, objectStoreName, "", idbKeyRange, skipCount, pageSize, callback);
359 * @param {number} pageSize
362 loadIndexData: function(databaseId, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
364 this._requestData(databaseId, databaseId.name, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback);
374 * @param {number} pageSize
377 _requestData: function(databaseId, databaseName, objectStoreName, indexName, idbKeyRange, skipCount, pageSize, callback)
405 this._agent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipCount, pageSize, keyRange ? keyRange : undefined, innerCallback.bind(this));
  /external/chromium_org/third_party/skia/tests/
PDFPrimitivesTest.cpp 252 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height());
253 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
330 SkISize pageSize = SkISize::Make(100, 100);
331 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
  /external/skia/tests/
PDFPrimitivesTest.cpp 252 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height());
253 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
330 SkISize pageSize = SkISize::Make(100, 100);
331 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));

Completed in 2660 milliseconds

1 2 3 4