Home
last modified time | relevance | path

Searched refs:extent_addr_get (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/jemalloc/src/
H A Dlarge.c66 memset(extent_addr_get(extent), JEMALLOC_ALLOC_JUNK, in large_palloc()
71 return extent_addr_get(extent); in large_palloc()
118 large_dalloc_maybe_junk(extent_addr_get(trail), in large_ralloc_no_move_shrink()
184 (uintptr_t)extent_addr_get(extent), szind, false); in large_ralloc_no_move_expand()
200 ((uintptr_t)extent_addr_get(extent) + oldusize); in large_ralloc_no_move_expand()
209 memset((void *)((uintptr_t)extent_addr_get(extent) + oldusize), in large_ralloc_no_move_expand()
291 return extent_addr_get(extent); in large_ralloc()
312 memcpy(ret, extent_addr_get(extent), copysize); in large_ralloc()
313 isdalloct(tsdn, extent_addr_get(extent), oldusize, tcache, NULL, true); in large_ralloc()
331 large_dalloc_maybe_junk(extent_addr_get(extent), in large_dalloc_prep_impl()
H A Dbase.c187 *gap_size = ALIGNMENT_CEILING((uintptr_t)extent_addr_get(extent), in base_extent_bump_alloc_helper()
188 alignment) - (uintptr_t)extent_addr_get(extent); in base_extent_bump_alloc_helper()
189 ret = (void *)((uintptr_t)extent_addr_get(extent) + *gap_size); in base_extent_bump_alloc_helper()
191 extent_binit(extent, (void *)((uintptr_t)extent_addr_get(extent) + in base_extent_bump_alloc_helper()
H A Darena.c280 ret = (void *)((uintptr_t)extent_addr_get(slab) + in arena_slab_reg_alloc()
298 *(ptrs + i) = (void *)((uintptr_t)extent_addr_get(slab) + in arena_slab_reg_alloc_batch()
319 uintptr_t base = (uintptr_t)extent_addr_get(slab); in arena_slab_reg_alloc_batch()
342 assert((uintptr_t)ptr >= (uintptr_t)extent_addr_get(slab)); in arena_slab_regind()
345 assert(((uintptr_t)ptr - (uintptr_t)extent_addr_get(slab)) % in arena_slab_regind()
348 diff = (size_t)((uintptr_t)ptr - (uintptr_t)extent_addr_get(slab)); in arena_slab_regind()
H A Dextent.c1037 (uintptr_t)extent_addr_get(*extent), szind, slab); in extent_split_interior()
2123 extent_init(&lead, arena, extent_addr_get(extent), size_a, in extent_split_impl()
2403 *slabcur_addr = extent_addr_get(bin->slabcur); in extent_util_stats_verbose_get()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dextent_inlines.h133 extent_addr_get(const extent_t *extent) { in extent_addr_get() function
217 assert(extent_base_get(extent) == extent_addr_get(extent)); in extent_addr_randomize()
461 uintptr_t a_addr = (uintptr_t)extent_addr_get(a); in extent_ad_comp()
462 uintptr_t b_addr = (uintptr_t)extent_addr_get(b); in extent_ad_comp()
H A Darena_inlines_b.h224 assert(extent_addr_get(extent) == ptr || extent_slab_get(extent)); in arena_vsalloc()