/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
IndexedDBViews.js | 302 var pageSize = this._pageSize; 307 if (!force && this._lastKey === key && this._lastPageSize === pageSize && this._lastSkipCount === skipCount) 310 if (this._lastKey !== key || this._lastPageSize !== pageSize) { 315 this._lastPageSize = pageSize; 346 this._model.loadIndexData(this._databaseId, this._objectStore.name, this._index.name, idbKeyRange, skipCount, pageSize, callback.bind(this)); 348 this._model.loadObjectStoreData(this._databaseId, this._objectStore.name, idbKeyRange, skipCount, pageSize, callback.bind(this));
|
/external/skia/tests/ |
PDFPrimitivesTest.cpp | 254 SkISize pageSize = SkISize::Make(bitmap.width(), bitmap.height()); 255 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I())); 332 SkISize pageSize = SkISize::Make(100, 100); 333 SkAutoTUnref<SkPDFDevice> dev(new SkPDFDevice(pageSize, pageSize, SkMatrix::I()));
|
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 129 uptr PageSize = GetPageSizeCached(); 130 size = RoundUpTo(size, PageSize); 133 size = PageSize;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.h | 61 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>);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
low_level_alloc.cc | 185 explicit Arena(int) : pagesize(0) {} // set pagesize to zero explicitly 189 // pagesize, roundup, min_size 193 size_t pagesize; // ==getpagesize() (init under mu, then ro) member in struct:LowLevelAlloc::Arena 264 if (arena->pagesize == 0) { 265 arena->pagesize = getpagesize(); 330 RAW_CHECK(size % arena->pagesize == 0, 332 RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0, 459 size_t new_pages_size = RoundUp(req_rnd, arena->pagesize * 16);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
low_level_alloc.cc | 185 explicit Arena(int) : pagesize(0) {} // set pagesize to zero explicitly 189 // pagesize, roundup, min_size 193 size_t pagesize; // ==getpagesize() (init under mu, then ro) member in struct:LowLevelAlloc::Arena 264 if (arena->pagesize == 0) { 265 arena->pagesize = getpagesize(); 330 RAW_CHECK(size % arena->pagesize == 0, 332 RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0, 459 size_t new_pages_size = RoundUp(req_rnd, arena->pagesize * 16);
|
/external/iproute2/doc/ |
Makefile | 13 PAGESIZE=a4
|
/hardware/ti/omap4xxx/security/tf_sdk/include/ |
tee_client_api_ex.h | 61 uint32_t pageSize;
|
/system/core/include/utils/ |
LinearAllocator.h | 76 Page* newPage(size_t pageSize);
|
/external/chromium_org/chrome/browser/resources/print_preview/data/ticket_items/ |
custom_margins.js | 153 max = this.getDocumentInfoInternal().pageSize.height - oppositeMargin - 156 max = this.getDocumentInfoInternal().pageSize.width - oppositeMargin -
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
win_platform_backend.py | 63 ('PageSize', ctypes.c_size_t), 75 return performance_info.CommitTotal * performance_info.PageSize / 1024
|
/frameworks/compile/mclinker/lib/Core/ |
GeneralOptions.cpp | 148 m_CommPageSize = pOption.pageSize(); 151 m_MaxPageSize = pOption.pageSize();
|
/system/extras/libpagemap/include/pagemap/ |
pagemap.h | 50 int pagesize; member in struct:pm_kernel 82 #define pm_kernel_pagesize(ker) ((ker)->pagesize)
|
/system/extras/libpagemap/ |
pm_process.c | 113 firstpage = low / proc->ker->pagesize; 114 numpages = (high - low) / proc->ker->pagesize;
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
debugallocation.cc | 499 int pagesize = getpagesize(); local 500 int num_pages = (sz + pagesize - 1) / pagesize + 1; 501 char* p = (char*) mmap(NULL, num_pages * pagesize, PROT_READ|PROT_WRITE, 512 if (mprotect(p + (num_pages - 1) * pagesize, pagesize, PROT_NONE)) { 515 b = (MallocBlock*) (p + (num_pages - 1) * pagesize - sz); 542 int pagesize = getpagesize(); local 543 int num_pages = (size + pagesize - 1) / pagesize + 1 1405 int pagesize = getpagesize(); local [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
debugallocation.cc | 501 int pagesize = getpagesize(); local 502 int num_pages = (sz + pagesize - 1) / pagesize + 1; 503 char* p = (char*) mmap(NULL, num_pages * pagesize, PROT_READ|PROT_WRITE, 514 if (mprotect(p + (num_pages - 1) * pagesize, pagesize, PROT_NONE)) { 517 b = (MallocBlock*) (p + (num_pages - 1) * pagesize - sz); 544 int pagesize = getpagesize(); local 545 int num_pages = (size + pagesize - 1) / pagesize + 1 1393 int pagesize = getpagesize(); local [all...] |
/dalvik/libdex/ |
SysUtil.h | 27 * sysconf(_SC_PAGESIZE) or some system-specific define (usually PAGESIZE
|
/external/chromium_org/third_party/smhasher/src/ |
AvalancheTest.h | 245 const int pagesize = hashbits*hashbits*4; local 257 std::vector<int> bins(keybits*pagesize,0); 263 int * page = &bins[keybit*pagesize]; 296 int * page = &bins[keybit*pagesize];
|
/external/chromium_org/third_party/sqlite/ |
preload-cache.patch | 131 + memcpy(pPg->pData, pDataToFill, pPager->pageSize); 188 + if (pPager->dbSize < 0 || pPager->pageSize < 0) { 199 + loadSize = loadPages * pPager->pageSize; 222 + &fileData[(i-1)*(i64)pPager->pageSize]);
|
/external/chromium_org/win8/metro_driver/ |
print_document_source.cc | 186 D2D1_SIZE_F page_size = D2D1::SizeF(page_desc.PageSize.Width, 187 page_desc.PageSize.Height); 241 width_ = page_desc.PageSize.Width; 242 height_ = page_desc.PageSize.Height;
|
/external/stressapptest/src/ |
finelock_queue.h | 35 FineLockPEQueue(uint64 queuesize, int64 pagesize);
|
/external/stressapptest/ |
stressapptest.1 | 60 .B \-p <pagesize>
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteGlobal.java | 66 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
xopen_lim.h | 50 PAGESIZE
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
xopen_lim.h | 50 PAGESIZE
|