Home
last modified time | relevance | path

Searched refs:accumbytes (Results 1 – 3 of 3) sorted by relevance

/external/jemalloc/src/
Dprof.c237 tctx->cnts.accumbytes += usize; in prof_malloc_sample_object()
652 assert(tctx->cnts.accumbytes == 0); in prof_tctx_destroy()
1063 tdata->cnt_summed.accumbytes += in prof_tctx_merge_tdata()
1064 tctx->dump_cnts.accumbytes; in prof_tctx_merge_tdata()
1083 gctx->cnt_summed.accumbytes += tctx->dump_cnts.accumbytes; in prof_tctx_merge_gctx()
1133 tctx->dump_cnts.accumbytes)) in prof_tctx_dump_iter()
1286 arg->cnt_all.accumbytes += tdata->cnt_summed.accumbytes; in prof_tdata_merge_iter()
1307 tdata->cnt_summed.accumbytes, in prof_tdata_dump_iter()
1327 cnt_all->curbytes, cnt_all->accumobjs, cnt_all->accumbytes)) in prof_dump_header()
1359 assert(gctx->cnt_summed.accumbytes == 0); in prof_dump_gctx()
[all …]
/external/jemalloc/include/jemalloc/internal/
Darena.h686 bool arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes);
687 bool arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes);
688 bool arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes);
1055 arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes) in arena_prof_accum_impl() argument
1061 arena->prof_accumbytes += accumbytes; in arena_prof_accum_impl()
1070 arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes) in arena_prof_accum_locked() argument
1077 return (arena_prof_accum_impl(arena, accumbytes)); in arena_prof_accum_locked()
1081 arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes) in arena_prof_accum() argument
1093 ret = arena_prof_accum_impl(arena, accumbytes); in arena_prof_accum()
Dprof.h78 uint64_t accumbytes; member