Home
last modified time | relevance | path

Searched refs:cnts (Results 1 – 2 of 2) sorted by relevance

/external/jemalloc/src/
Dprof.c233 tctx->cnts.curobjs++; in prof_malloc_sample_object()
234 tctx->cnts.curbytes += usize; in prof_malloc_sample_object()
236 tctx->cnts.accumobjs++; in prof_malloc_sample_object()
237 tctx->cnts.accumbytes += usize; in prof_malloc_sample_object()
248 assert(tctx->cnts.curobjs > 0); in prof_free_sampled_object()
249 assert(tctx->cnts.curbytes >= usize); in prof_free_sampled_object()
250 tctx->cnts.curobjs--; in prof_free_sampled_object()
251 tctx->cnts.curbytes -= usize; in prof_free_sampled_object()
619 if (tctx->cnts.curobjs != 0) in prof_tctx_should_destroy()
648 assert(tctx->cnts.curobjs == 0); in prof_tctx_destroy()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dprof.h100 prof_cnt_t cnts; member