HomeSort by relevance Sort by last modified time
    Searched defs:nmalloc (Results 1 - 3 of 3) sorted by null

  /external/jemalloc/include/jemalloc/internal/
stats.h 28 * 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
  /external/jemalloc/test/unit/
stats.c 41 uint64_t nmalloc, ndalloc, nrequests; local
55 assert_d_eq(mallctl("stats.arenas.0.huge.nmalloc", &nmalloc, &sz, NULL,
65 assert_u64_ge(nmalloc, ndalloc,
66 "nmalloc should be at least as large as ndalloc");
67 assert_u64_le(nmalloc, nrequests,
68 "nmalloc should no larger than nrequests");
147 uint64_t epoch, nmalloc, ndalloc, nrequests; local
169 assert_d_eq(mallctl("stats.arenas.0.small.nmalloc", &nmalloc, &sz
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/src/
stats.c 62 "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", i, j, &nmalloc
220 uint64_t nmalloc, ndalloc, nrequests; local
    [all...]

Completed in 2056 milliseconds