Lines Matching refs:cnt_all
1233 prof_cnt_t *cnt_all = (prof_cnt_t *)arg;
1249 cnt_all->curobjs += tdata->cnt_summed.curobjs;
1250 cnt_all->curbytes += tdata->cnt_summed.curbytes;
1252 cnt_all->accumobjs += tdata->cnt_summed.accumobjs;
1253 cnt_all->accumbytes += tdata->cnt_summed.accumbytes;
1286 prof_dump_header(bool propagate_err, const prof_cnt_t *cnt_all)
1293 ((uint64_t)1U << lg_prof_sample), cnt_all->curobjs,
1294 cnt_all->curbytes, cnt_all->accumobjs, cnt_all->accumbytes))
1446 prof_leakcheck(const prof_cnt_t *cnt_all, size_t leak_ngctx,
1450 if (cnt_all->curbytes != 0) {
1453 cnt_all->curbytes, (cnt_all->curbytes != 1) ? "s" : "",
1454 cnt_all->curobjs, (cnt_all->curobjs != 1) ? "s" : "",
1485 prof_cnt_t cnt_all;
1515 memset(&cnt_all, 0, sizeof(prof_cnt_t));
1517 tdata_tree_iter(&tdatas, NULL, prof_tdata_merge_iter, (void *)&cnt_all);
1531 if (prof_dump_header(propagate_err, &cnt_all))
1550 prof_leakcheck(&cnt_all, leak_ngctx, filename);