Home
last modified time | relevance | path

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

/external/jemalloc/src/
Dprof.c825 memcpy(&ctx->cnt_summed, &ctx->cnt_merged, sizeof(prof_cnt_t)); in prof_dump_ctx_prep()
843 ctx->cnt_summed.curobjs += tcnt.curobjs; in prof_dump_ctx_prep()
844 ctx->cnt_summed.curbytes += tcnt.curbytes; in prof_dump_ctx_prep()
846 ctx->cnt_summed.accumobjs += tcnt.accumobjs; in prof_dump_ctx_prep()
847 ctx->cnt_summed.accumbytes += tcnt.accumbytes; in prof_dump_ctx_prep()
851 if (ctx->cnt_summed.curobjs != 0) in prof_dump_ctx_prep()
855 cnt_all->curobjs += ctx->cnt_summed.curobjs; in prof_dump_ctx_prep()
856 cnt_all->curbytes += ctx->cnt_summed.curbytes; in prof_dump_ctx_prep()
858 cnt_all->accumobjs += ctx->cnt_summed.accumobjs; in prof_dump_ctx_prep()
859 cnt_all->accumbytes += ctx->cnt_summed.accumbytes; in prof_dump_ctx_prep()
[all …]
/external/jemalloc/include/jemalloc/internal/
Dprof.h142 prof_cnt_t cnt_summed; member