Searched refs:page_size (Results 76 - 100 of 126) sorted by relevance

123456

/external/tinyalsa/
H A Dpcm.c345 int page_size = sysconf(_SC_PAGE_SIZE); local
346 pcm->mmap_status = mmap(NULL, page_size, PROT_READ, MAP_FILE | MAP_SHARED,
353 pcm->mmap_control = mmap(NULL, page_size, PROT_READ | PROT_WRITE,
358 munmap(pcm->mmap_status, page_size);
391 int page_size = sysconf(_SC_PAGE_SIZE); local
393 munmap(pcm->mmap_status, page_size);
395 munmap(pcm->mmap_control, page_size);
/external/compiler-rt/lib/asan/
H A Dasan_poisoning.cc58 uptr page_size = GetPageSizeCached(); local
59 uptr shadow_beg = RoundUpTo(MemToShadow(p), page_size);
60 uptr shadow_end = RoundDownTo(MemToShadow(p + size), page_size);
/external/chromium_org/android_webview/browser/renderer_host/
H A Dprint_manager.cc90 params->page_size = settings.page_setup_device_units().physical_size();
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_interface.h113 int page_size; member in struct:chromeos::InputMethodEngineInterface::CandidateWindowProperty
/external/chromium_org/chrome/browser/local_discovery/
H A Dprivet_http.h175 virtual void SetPageSize(const gfx::Size& page_size) = 0;
/external/chromium_org/third_party/leveldatabase/src/doc/bench/
H A Ddb_bench_sqlite3.cc447 char page_size[100]; local
448 snprintf(page_size, sizeof(page_size), "PRAGMA page_size = %d",
450 status = sqlite3_exec(db_, page_size, NULL, NULL, &err_msg);
693 } else if (sscanf(argv[i], "--page_size=%d%c", &n, &junk) == 1) {
/external/kernel-headers/original/uapi/linux/
H A Da.out.h119 #define SEGMENT_SIZE page_size
/external/llvm/lib/Support/Unix/
H A DMemory.inc91 static const size_t PageSize = process::get_self()->page_size();
184 size_t PageSize = process::get_self()->page_size();
/external/chromium_org/chrome/browser/printing/
H A Dprint_view_manager_base.cc162 params.page_size,
174 bytes, params.page_size, params.content_area);
/external/qemu/target-arm/
H A Dhelper.c1071 target_ulong *page_size)
1104 *page_size = 1024 * 1024;
1122 *page_size = 0x10000;
1127 *page_size = 0x1000;
1142 *page_size = 0x400;
1164 target_ulong *page_size)
1204 *page_size = 0x1000000;
1208 *page_size = 0x100000;
1225 *page_size = 0x10000;
1230 *page_size
1069 get_phys_addr_v5(CPUARMState *env, uint32_t address, int access_type, int is_user, uint32_t *phys_ptr, int *prot, target_ulong *page_size) argument
1162 get_phys_addr_v6(CPUARMState *env, uint32_t address, int access_type, int is_user, uint32_t *phys_ptr, int *prot, target_ulong *page_size) argument
1333 get_phys_addr(CPUARMState *env, uint32_t address, int access_type, int is_user, uint32_t *phys_ptr, int *prot, target_ulong *page_size) argument
1365 target_ulong page_size; local
1398 target_ulong page_size; local
1627 target_ulong page_size; local
[all...]
/external/chromium_org/pdf/pdfium/
H A Dpdfium_engine.cc327 // |page_size| has the actual destination page size in points.
332 pp::Size* page_size,
334 bool is_dst_page_landscape = page_size->width() > page_size->height();
339 page_size->SetSize(page_size->height(), page_size->width());
2080 pp::Size page_size = GetPageSize(0); local
2081 page_size.Enlarge(kPageShadowLeft + kPageShadowRight,
2084 document_size_ = pp::Size(page_size
330 SetPageSizeAndContentRect(bool rotated, bool is_src_page_landscape, pp::Size* page_size, pp::Rect* content_rect) argument
[all...]
/external/chromium_org/sql/
H A Dconnection.cc323 const int page_size = page_size_ ? page_size_ : 1024; local
324 sqlite3_int64 preload_size = page_size * (cache_size_ ? cache_size_ : 2000);
342 scoped_ptr<char[]> buf(new char[page_size]);
343 for (sqlite3_int64 pos = 0; pos < file_size; pos += page_size) {
344 rc = file->pMethods->xRead(file, buf.get(), page_size, pos);
407 base::StringPrintf("PRAGMA page_size=%d", page_size_);
441 // page_size" can be used to query such a database.
993 base::StringPrintf("PRAGMA page_size=%d", page_size_);
/external/linux-tools-perf/perf-3.12.0/tools/lib/traceevent/
H A Devent-parse.h403 int page_size; member in struct:pevent
627 return pevent->page_size;
632 pevent->page_size = _page_size;
/external/chromium_org/v8/src/base/platform/
H A Dplatform-posix.cc95 static intptr_t page_size = getpagesize(); local
96 return page_size;
H A Dplatform-win32.cc700 static size_t page_size = 0; local
701 if (page_size == 0) {
704 page_size = base::bits::RoundUpToPowerOfTwo32(info.dwPageSize);
706 return page_size;
/external/fio/
H A Dfio.h381 extern uintptr_t page_mask, page_size;
447 extern uintptr_t page_size;
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c2055 size_t page_size; member in struct:malloc_params
2092 (((S) + (mparams.page_size)) & ~(mparams.page_size - SIZE_T_ONE))
2099 (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)
2155 #define GLOBALLY_INITIALIZE() (mparams.page_size == 0 && init_mparams())
2463 if (mparams.page_size == 0) {
2506 mparams.page_size = malloc_getpagesize;
2508 DEFAULT_GRANULARITY : mparams.page_size);
2513 mparams.page_size = system_info.dwPageSize;
2531 ((mparams.page_size
[all...]
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cc400 uptr page_size = GetPageSizeCached(); local
401 char *p = (char *)a.Allocate(&stats, page_size, 1);
403 CHECK_EQ(p, (char *)a.GetBlockBegin(p + page_size - 1));
404 CHECK_NE(p, (char *)a.GetBlockBegin(p + page_size));
/external/fio/engines/
H A Dmmap.c190 "%llu bytes\n", (unsigned long long) page_size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dvmlinux-kallsyms.c149 if (llabs(skew) >= page_size)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devlist.c494 unsigned char *data = md->base + page_size;
707 pages = (512 * 1024) / page_size;
711 mask = pages * page_size - 1;
720 evlist->mmap_len = (pages + 1) * page_size;
H A Dutil.c13 unsigned int page_size; variable
H A Dutil.h281 extern unsigned int page_size;
/external/qemu/include/hw/arm/
H A Dpxa.h126 qemu_irq irq, uint32_t page_size);
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_handler.cc1474 gfx::Size page_size,
1479 StartPrivetLocalPrint(print_ticket, capabilities, page_size);
1484 const gfx::Size& page_size) {
1501 privet_local_print_operation_->SetPageSize(page_size);
1557 const gfx::Size& page_size) {
1564 page_size));
1471 PrivetLocalPrintUpdateClient( std::string print_ticket, std::string capabilities, gfx::Size page_size, scoped_ptr<local_discovery::PrivetHTTPClient> http_client) argument
1482 StartPrivetLocalPrint(const std::string& print_ticket, const std::string& capabilities, const gfx::Size& page_size) argument
1554 PrintToPrivetPrinter(const std::string& device_name, const std::string& ticket, const std::string& capabilities, const gfx::Size& page_size) argument

Completed in 1124 milliseconds

123456