Home
last modified time | relevance | path

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

/external/jemalloc/src/
Dprof.c429 assert(ctx->cnt_merged.accumbytes == 0); in prof_ctx_destroy()
461 ctx->cnt_merged.accumbytes += cnt->cnts.accumbytes; in prof_ctx_merge()
847 ctx->cnt_summed.accumbytes += tcnt.accumbytes; in prof_dump_ctx_prep()
859 cnt_all->accumbytes += ctx->cnt_summed.accumbytes; in prof_dump_ctx_prep()
874 cnt_all->accumobjs, cnt_all->accumbytes)) in prof_dump_header()
881 cnt_all->accumobjs, cnt_all->accumbytes, in prof_dump_header()
928 assert(ctx->cnt_summed.accumbytes == 0); in prof_dump_ctx()
936 ctx->cnt_summed.accumobjs, ctx->cnt_summed.accumbytes)) { in prof_dump_ctx()
/external/jemalloc/include/jemalloc/internal/
Darena.h501 bool arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes);
502 bool arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes);
503 bool arena_prof_accum(arena_t *arena, uint64_t accumbytes);
857 arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes) in arena_prof_accum_impl() argument
863 arena->prof_accumbytes += accumbytes; in arena_prof_accum_impl()
872 arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes) in arena_prof_accum_locked() argument
879 return (arena_prof_accum_impl(arena, accumbytes)); in arena_prof_accum_locked()
883 arena_prof_accum(arena_t *arena, uint64_t accumbytes) in arena_prof_accum() argument
895 ret = arena_prof_accum_impl(arena, accumbytes); in arena_prof_accum()
Dprof.h83 uint64_t accumbytes; member
375 cnt->cnts.accumbytes += usize; in prof_malloc_record_object()
470 cnt->cnts.accumbytes += usize; in prof_realloc()