Home
last modified time | relevance | path

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

/external/jemalloc/src/
Dprof.c1056 memcpy(&tctx->dump_cnts, &tctx->cnts, sizeof(prof_cnt_t)); in prof_tctx_merge_tdata()
1058 tdata->cnt_summed.curobjs += tctx->dump_cnts.curobjs; in prof_tctx_merge_tdata()
1059 tdata->cnt_summed.curbytes += tctx->dump_cnts.curbytes; in prof_tctx_merge_tdata()
1062 tctx->dump_cnts.accumobjs; in prof_tctx_merge_tdata()
1064 tctx->dump_cnts.accumbytes; in prof_tctx_merge_tdata()
1079 gctx->cnt_summed.curobjs += tctx->dump_cnts.curobjs; in prof_tctx_merge_gctx()
1080 gctx->cnt_summed.curbytes += tctx->dump_cnts.curbytes; in prof_tctx_merge_gctx()
1082 gctx->cnt_summed.accumobjs += tctx->dump_cnts.accumobjs; in prof_tctx_merge_gctx()
1083 gctx->cnt_summed.accumbytes += tctx->dump_cnts.accumbytes; in prof_tctx_merge_gctx()
1131 "%"FMTu64"]\n", tctx->thr_uid, tctx->dump_cnts.curobjs, in prof_tctx_dump_iter()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dprof.h136 prof_cnt_t dump_cnts; member