/external/jemalloc/test/unit/ |
stats.c | 41 uint64_t nmalloc, ndalloc, nrequests; local 57 assert_d_eq(mallctl("stats.arenas.0.huge.ndalloc", &ndalloc, &sz, NULL, 65 assert_u64_ge(nmalloc, ndalloc, 66 "nmalloc should be at least as large as ndalloc"); 147 uint64_t epoch, nmalloc, ndalloc, nrequests; local 171 assert_d_eq(mallctl("stats.arenas.0.small.ndalloc", &ndalloc, &sz, 181 assert_u64_ge(nmalloc, ndalloc, 182 "nmalloc should be at least as large as ndalloc"); 196 uint64_t epoch, nmalloc, ndalloc, nrequests; local 240 uint64_t epoch, nmalloc, ndalloc; local 280 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes; local 353 uint64_t epoch, nmalloc, ndalloc, nrequests; local 397 uint64_t epoch, nmalloc, ndalloc; local [all...] |
/external/jemalloc/include/jemalloc/internal/ |
stats.h | 28 * each to nmalloc and ndalloc. 31 uint64_t ndalloc; member in struct:malloc_bin_stats_s 70 * each to nmalloc and ndalloc. 73 uint64_t ndalloc; member in struct:malloc_large_stats_s 95 uint64_t ndalloc; member in struct:malloc_huge_stats_s
|
/external/jemalloc/src/ |
stats.c | 63 " ndalloc nrequests curregs curruns regs" 69 " ndalloc nrequests curregs curruns regs" 84 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local 99 CTL_M2_M4_GET("stats.arenas.0.bins.0.ndalloc", i, j, 100 &ndalloc, uint64_t); 139 ndalloc, nrequests, curregs, curruns, nregs, 149 ndalloc, nrequests, curregs, curruns, nregs, 168 "large: size ind allocated nmalloc ndalloc" 173 uint64_t nmalloc, ndalloc, nrequests; local 178 CTL_M2_M4_GET("stats.arenas.0.lruns.0.ndalloc", i, j, &ndalloc 220 uint64_t nmalloc, ndalloc, nrequests; local [all...] |
android_je_mallinfo.c | 94 mi.fordblks = bin->stats.ndalloc;
|
ctl.c | 386 {NAME("ndalloc"), CTL(stats_arenas_i_small_ndalloc)}, 393 {NAME("ndalloc"), CTL(stats_arenas_i_large_ndalloc)}, 400 {NAME("ndalloc"), CTL(stats_arenas_i_huge_ndalloc)}, 406 {NAME("ndalloc"), CTL(stats_arenas_i_bins_j_ndalloc)}, 425 {NAME("ndalloc"), CTL(stats_arenas_i_lruns_j_ndalloc)}, 439 {NAME("ndalloc"), CTL(stats_arenas_i_hchunks_j_ndalloc)}, 571 cstats->ndalloc_small += cstats->bstats[i].ndalloc; 619 sstats->bstats[i].ndalloc += astats->bstats[i].ndalloc; 636 sstats->lstats[i].ndalloc += astats->lstats[i].ndalloc [all...] |
arena.c | 833 arena->stats.hstats[index].ndalloc++; 846 arena->stats.hstats[index].ndalloc--; [all...] |