Searched refs:nmalloc (Results 1 - 6 of 6) sorted by relevance

/freebsd-11.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dstats.h28 * each to nmalloc and ndalloc.
30 uint64_t nmalloc; member in struct:malloc_bin_stats_s
70 * each to nmalloc and ndalloc.
72 uint64_t nmalloc; member in struct:malloc_large_stats_s
94 uint64_t nmalloc; member in struct:malloc_huge_stats_s
/freebsd-11.0-release/contrib/jemalloc/src/
H A Dstats.c62 "bins: size ind allocated nmalloc"
68 "bins: size ind allocated nmalloc"
84 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local
97 CTL_M2_M4_GET("stats.arenas.0.bins.0.nmalloc", i, j,
98 &nmalloc, uint64_t);
138 reg_size, j, curregs * reg_size, nmalloc,
148 reg_size, j, curregs * reg_size, nmalloc,
168 "large: size ind allocated nmalloc ndalloc"
173 uint64_t nmalloc, ndalloc, nrequests; local
176 CTL_M2_M4_GET("stats.arenas.0.lruns.0.nmalloc",
220 uint64_t nmalloc, ndalloc, nrequests; local
[all...]
H A Dctl.c389 {NAME("nmalloc"), CTL(stats_arenas_i_small_nmalloc)},
396 {NAME("nmalloc"), CTL(stats_arenas_i_large_nmalloc)},
403 {NAME("nmalloc"), CTL(stats_arenas_i_huge_nmalloc)},
409 {NAME("nmalloc"), CTL(stats_arenas_i_bins_j_nmalloc)},
428 {NAME("nmalloc"), CTL(stats_arenas_i_lruns_j_nmalloc)},
442 {NAME("nmalloc"), CTL(stats_arenas_i_hchunks_j_nmalloc)},
576 cstats->nmalloc_small += cstats->bstats[i].nmalloc;
625 sstats->bstats[i].nmalloc += astats->bstats[i].nmalloc;
642 sstats->lstats[i].nmalloc
[all...]
H A Darena.c828 arena->stats.hstats[index].nmalloc++;
841 arena->stats.hstats[index].nmalloc--;
2415 bin->stats.nmalloc += i;
2558 bin->stats.nmalloc++;
2627 arena->stats.lstats[index].nmalloc++;
2742 arena->stats.lstats[index].nmalloc++;
3051 arena->stats.lstats[index].nmalloc++;
3146 arena->stats.lstats[index].nmalloc++;
3442 lstats[i].nmalloc += arena->stats.lstats[i].nmalloc;
[all...]
/freebsd-11.0-release/libexec/rtld-elf/
H A Dmalloc.c116 * nmalloc[i] is the difference between the number of mallocs and frees
119 static u_int nmalloc[NBUCKETS]; variable
220 nmalloc[bucket]++;
322 nmalloc[size]--;
454 fprintf(stderr, " %d", nmalloc[i]);
455 totused += nmalloc[i] * (1 << (i + 3));
/freebsd-11.0-release/contrib/tcsh/
H A Dtc.alloc.c145 * nmalloc[i] is the difference between the number of mallocs and frees
148 static U_int nmalloc[NBUCKETS] IZERO_STRUCT;
225 nmalloc[bucket]++;
335 nmalloc[size]--;
617 xprintf(" %4d", nmalloc[i]);
618 totused += nmalloc[i] * (1 << (i + 3));

Completed in 121 milliseconds