HomeSort by: relevance | last modified time | path
    Searched defs:cnt_all (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/jemalloc/dist/test/unit/
prof_reset.c 96 prof_cnt_t cnt_all; local
97 prof_cnt_all(&cnt_all);
98 expect_u64_eq(cnt_all.curobjs, 1, "Expected 1 allocation");
102 prof_cnt_all(&cnt_all);
103 expect_u64_eq(cnt_all.curobjs, 0, "Expected 0 allocations");
  /src/external/bsd/jemalloc/dist/src/
prof_data.c 894 prof_cnt_t *cnt_all; member in struct:prof_tdata_merge_iter_arg_s
918 arg->cnt_all->curobjs += tdata->cnt_summed.curobjs;
919 arg->cnt_all->curobjs_shifted_unbiased
921 arg->cnt_all->curbytes += tdata->cnt_summed.curbytes;
922 arg->cnt_all->curbytes_unbiased
925 arg->cnt_all->accumobjs += tdata->cnt_summed.accumobjs;
926 arg->cnt_all->accumobjs_shifted_unbiased
928 arg->cnt_all->accumbytes +=
930 arg->cnt_all->accumbytes_unbiased +=
962 prof_dump_header(prof_dump_iter_arg_t *arg, const prof_cnt_t *cnt_all) {
1109 prof_cnt_t cnt_all; local
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
prof.c 1283 prof_cnt_t cnt_all; member in struct:prof_tdata_merge_iter_arg_s
1307 arg->cnt_all.curobjs += tdata->cnt_summed.curobjs;
1308 arg->cnt_all.curbytes += tdata->cnt_summed.curbytes;
1310 arg->cnt_all.accumobjs += tdata->cnt_summed.accumobjs;
1311 arg->cnt_all.accumbytes += tdata->cnt_summed.accumbytes;
1345 const prof_cnt_t *cnt_all) {
1351 ((uint64_t)1U << lg_prof_sample), cnt_all->curobjs,
1352 cnt_all->curbytes, cnt_all->accumobjs, cnt_all->accumbytes))
    [all...]

Completed in 27 milliseconds