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

/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dstats.h33 * each to nmalloc and ndalloc.
35 uint64_t nmalloc; member in struct:malloc_bin_stats_s
69 * each to nmalloc and ndalloc.
71 uint64_t nmalloc; member in struct:malloc_large_stats_s
H A Dctl.h62 uint64_t nmalloc; /* huge_nmalloc */ member in struct:ctl_stats_s::__anon1518
/freebsd-10.0-release/libexec/rtld-elf/
H A Dmalloc.c121 * nmalloc[i] is the difference between the number of mallocs and frees
124 static u_int nmalloc[NBUCKETS]; variable
236 nmalloc[bucket]++;
338 nmalloc[size]--;
470 fprintf(stderr, " %d", nmalloc[i]);
471 totused += nmalloc[i] * (1 << (i + 3));
/freebsd-10.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));
/freebsd-10.0-release/contrib/jemalloc/src/
H A Dstats.c69 "bins: bin size regs pgs allocated nmalloc"
74 "bins: bin size regs pgs allocated nmalloc"
88 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local
110 CTL_IJ_GET("stats.arenas.0.bins.0.nmalloc",
111 &nmalloc, uint64_t);
133 allocated, nmalloc, ndalloc, nrequests,
141 allocated, nmalloc, ndalloc, nruns, reruns,
168 "large: size pages nmalloc ndalloc nrequests"
172 uint64_t nmalloc, ndalloc, nrequests; local
175 CTL_IJ_GET("stats.arenas.0.lruns.0.nmalloc",
[all...]
H A Dctl.c324 {NAME("nmalloc"), CTL(stats_huge_nmalloc)},
330 {NAME("nmalloc"), CTL(stats_arenas_i_small_nmalloc)},
337 {NAME("nmalloc"), CTL(stats_arenas_i_large_nmalloc)},
344 {NAME("nmalloc"), CTL(stats_arenas_i_bins_j_nmalloc)},
362 {NAME("nmalloc"), CTL(stats_arenas_i_lruns_j_nmalloc)},
472 cstats->nmalloc_small += cstats->bstats[i].nmalloc;
502 sstats->lstats[i].nmalloc += astats->lstats[i].nmalloc;
510 sstats->bstats[i].nmalloc += astats->bstats[i].nmalloc;
[all...]
H A Darena.c1362 bin->stats.nmalloc += i;
1446 bin->stats.nmalloc++;
1492 arena->stats.lstats[(size >> LG_PAGE) - 1].nmalloc++;
1554 arena->stats.lstats[(size >> LG_PAGE) - 1].nmalloc++;
1805 arena->stats.lstats[(size >> LG_PAGE) - 1].nmalloc++;
1866 arena->stats.lstats[(size >> LG_PAGE) - 1].nmalloc++;
2060 lstats[i].nmalloc += arena->stats.lstats[i].nmalloc;
2072 bstats[i].nmalloc += bin->stats.nmalloc;
[all...]

Completed in 186 milliseconds