Searched refs:pagesize (Results 1 – 5 of 5) sorted by relevance
| /third_party/ulib/backtrace/ |
| A D | mmap.c | 95 size_t pagesize; in backtrace_alloc() local 143 pagesize = getpagesize (); in backtrace_alloc() 144 asksize = (size + pagesize - 1) & ~ (pagesize - 1); in backtrace_alloc() 182 size_t pagesize; in backtrace_free() local 184 pagesize = getpagesize (); in backtrace_free() 225 size_t pagesize; in backtrace_vector_grow() local 229 pagesize = getpagesize (); in backtrace_vector_grow() 233 else if (alc < pagesize) in backtrace_vector_grow() 236 if (alc > pagesize) in backtrace_vector_grow() 237 alc = pagesize; in backtrace_vector_grow() [all …]
|
| A D | mmapio.c | 58 size_t pagesize; in backtrace_get_view() local 63 pagesize = getpagesize (); in backtrace_get_view() 64 inpage = offset % pagesize; in backtrace_get_view() 68 size = (size + (pagesize - 1)) & ~ (pagesize - 1); in backtrace_get_view()
|
| /third_party/tools/android/ |
| A D | mkdtimg | 82 def align_page_size(offset, pagesize): 83 return (pagesize - (offset % pagesize)) 114 padding = align_page_size(dtb_offset, args.pagesize) 116 dtb_size_padding = align_page_size(dtb_size, args.pagesize)
|
| A D | mkbootimg | 59 args.pagesize, # flash page size we assume 73 pad_file(args.output, args.pagesize) 159 write_padded_file(args.output, args.kernel, args.pagesize) 160 write_padded_file(args.output, args.ramdisk, args.pagesize) 161 write_padded_file(args.output, args.second, args.pagesize)
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 717 - Rename the "arenas.pagesize" mallctl to "arenas.page".
|
Completed in 34 milliseconds