Home
last modified time | relevance | path

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

/external/jemalloc_new/include/jemalloc/internal/
Darena_inlines_b.h12 arena_prof_tctx_get(tsdn_t *tsdn, const void *ptr, alloc_ctx_t *alloc_ctx) { in arena_prof_tctx_get() argument
17 if (alloc_ctx == NULL) { in arena_prof_tctx_get()
23 if (unlikely(!alloc_ctx->slab)) { in arena_prof_tctx_get()
32 alloc_ctx_t *alloc_ctx, prof_tctx_t *tctx) { in arena_prof_tctx_set() argument
37 if (alloc_ctx == NULL) { in arena_prof_tctx_set()
43 if (unlikely(!alloc_ctx->slab)) { in arena_prof_tctx_set()
191 alloc_ctx_t *alloc_ctx, bool slow_path) { in arena_dalloc() argument
203 if (alloc_ctx != NULL) { in arena_dalloc()
204 szind = alloc_ctx->szind; in arena_dalloc()
205 slab = alloc_ctx->slab; in arena_dalloc()
[all …]
Dprof_inlines_b.h40 prof_tctx_get(tsdn_t *tsdn, const void *ptr, alloc_ctx_t *alloc_ctx) { in prof_tctx_get() argument
44 return arena_prof_tctx_get(tsdn, ptr, alloc_ctx); in prof_tctx_get()
49 alloc_ctx_t *alloc_ctx, prof_tctx_t *tctx) { in prof_tctx_set() argument
53 arena_prof_tctx_set(tsdn, ptr, usize, alloc_ctx, tctx); in prof_tctx_set()
122 prof_malloc(tsdn_t *tsdn, const void *ptr, size_t usize, alloc_ctx_t *alloc_ctx, in prof_malloc() argument
131 prof_tctx_set(tsdn, ptr, usize, alloc_ctx, in prof_malloc()
195 prof_free(tsd_t *tsd, const void *ptr, size_t usize, alloc_ctx_t *alloc_ctx) { in prof_free() argument
196 prof_tctx_t *tctx = prof_tctx_get(tsd_tsdn(tsd), ptr, alloc_ctx); in prof_free()
Djemalloc_internal_inlines_c.h104 idalloctm(tsdn_t *tsdn, void *ptr, tcache_t *tcache, alloc_ctx_t *alloc_ctx, in idalloctm() argument
118 arena_dalloc(tsdn, ptr, tcache, alloc_ctx, slow_path); in idalloctm()
128 alloc_ctx_t *alloc_ctx, bool slow_path) { in isdalloct() argument
131 arena_sdalloc(tsdn, ptr, size, tcache, alloc_ctx, slow_path); in isdalloct()
/external/jemalloc_new/src/
Djemalloc.c1892 alloc_ctx_t alloc_ctx; local
1894 alloc_ctx.slab = (usize <= SMALL_MAXCLASS);
1904 alloc_ctx.slab = false;
1913 prof_malloc(tsd_tsdn(tsd), allocation, usize, &alloc_ctx, tctx);
2184 alloc_ctx_t *alloc_ctx) { argument
2190 old_tctx = prof_tctx_get(tsd_tsdn(tsd), old_ptr, alloc_ctx);
2220 alloc_ctx_t alloc_ctx; local
2223 (uintptr_t)ptr, true, &alloc_ctx.szind, &alloc_ctx.slab);
2224 assert(alloc_ctx.szind != NSIZES);
2228 usize = sz_index2size(alloc_ctx.szind);
[all …]
Darena.c982 alloc_ctx_t alloc_ctx; in arena_reset() local
985 (uintptr_t)ptr, true, &alloc_ctx.szind, &alloc_ctx.slab); in arena_reset()
986 assert(alloc_ctx.szind != NSIZES); in arena_reset()
989 usize = sz_index2size(alloc_ctx.szind); in arena_reset()
994 prof_free(tsd, ptr, usize, &alloc_ctx); in arena_reset()
/external/e2fsprogs/lib/ext2fs/
Dbmap.c210 struct blk_alloc_ctx alloc_ctx; in extent_bmap() local
252 alloc_ctx.ino = ino; in extent_bmap()
253 alloc_ctx.inode = inode; in extent_bmap()
254 alloc_ctx.lblk = extent.e_lblk; in extent_bmap()
255 alloc_ctx.flags = BLOCK_ALLOC_DATA; in extent_bmap()
257 &alloc_ctx); in extent_bmap()
314 struct blk_alloc_ctx alloc_ctx = { in ext2fs_bmap2() local
378 &alloc_ctx); in ext2fs_bmap2()
404 &alloc_ctx); in ext2fs_bmap2()
432 &alloc_ctx); in ext2fs_bmap2()
[all …]