Home | History | Annotate | Download | only in src

Lines Matching refs:cnt_all

1212 	prof_cnt_t *cnt_all = (prof_cnt_t *)arg;
1228 cnt_all->curobjs += tdata->cnt_summed.curobjs;
1229 cnt_all->curbytes += tdata->cnt_summed.curbytes;
1231 cnt_all->accumobjs += tdata->cnt_summed.accumobjs;
1232 cnt_all->accumbytes += tdata->cnt_summed.accumbytes;
1265 prof_dump_header(bool propagate_err, const prof_cnt_t *cnt_all)
1272 ((uint64_t)1U << lg_prof_sample), cnt_all->curobjs,
1273 cnt_all->curbytes, cnt_all->accumobjs, cnt_all->accumbytes))
1410 prof_leakcheck(const prof_cnt_t *cnt_all, size_t leak_ngctx,
1414 if (cnt_all->curbytes != 0) {
1417 cnt_all->curbytes, (cnt_all->curbytes != 1) ? "s" : "",
1418 cnt_all->curobjs, (cnt_all->curobjs != 1) ? "s" : "",
1449 prof_cnt_t cnt_all;
1479 memset(&cnt_all, 0, sizeof(prof_cnt_t));
1481 tdata_tree_iter(&tdatas, NULL, prof_tdata_merge_iter, (void *)&cnt_all);
1495 if (prof_dump_header(propagate_err, &cnt_all))
1514 prof_leakcheck(&cnt_all, leak_ngctx, filename);