Home | History | Annotate | Download | only in src

Lines Matching defs:size

21     void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg);
23 void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg);
26 * between [base, base+size). base will be rounded down to by the jemalloc
27 * chunk size, and base+size will be rounded up to the chunk size. If no memory
36 int je_iterate(uintptr_t base, size_t size,
37 void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg) {
41 uintptr_t end = CHUNK_CEILING(base + size);
86 void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg) {
93 size_t size;
98 size = arena_mapbits_unallocated_size_get(chunk, pageind);
103 size = arena_mapbits_large_size_get(chunk, pageind);
105 callback((uintptr_t)rpages, size, arg);
115 size = arena_bin_info[binind].run_size;
119 assert(size == PAGE_CEILING(size));
120 assert(size > 0);
121 pageind += size >> LG_PAGE;
129 void (*callback)(uintptr_t ptr, size_t size, void* arg), void* arg) {