Home
last modified time | relevance | path

Searched refs:nlruns (Results 1 – 4 of 4) sorted by relevance

/external/jemalloc/test/unit/
Drun_quantize.c39 unsigned nlruns, i; in TEST_BEGIN() local
54 assert_d_eq(mallctl("arenas.nlruns", &nlruns, &sz, NULL, 0), 0, in TEST_BEGIN()
59 for (i = 0; i < nlruns; i++) { in TEST_BEGIN()
96 unsigned nbins, nlruns, i; in TEST_BEGIN() local
109 assert_d_eq(mallctl("arenas.nlruns", &nlruns, &sz, NULL, 0), 0, in TEST_BEGIN()
Dmallctl.c602 TEST_ARENAS_CONSTANT(unsigned, nlruns, nlclasses); in TEST_BEGIN()
/external/jemalloc/src/
Dstats.c164 unsigned nbins, nlruns, j; in stats_arena_lruns_print() local
171 CTL_GET("arenas.nlruns", &nlruns, unsigned); in stats_arena_lruns_print()
172 for (j = 0, in_gap = false; j < nlruns; j++) { in stats_arena_lruns_print()
210 unsigned nbins, nlruns, nhchunks, j; in stats_arena_hchunks_print() local
217 CTL_GET("arenas.nlruns", &nlruns, unsigned); in stats_arena_hchunks_print()
244 hchunk_size, nbins + nlruns + j, in stats_arena_hchunks_print()
/external/jemalloc/
DChangeLog291 - Change the "arenas.nlruns" mallctl type from size_t to unsigned.