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

  /external/jemalloc/include/jemalloc/internal/
stats.h 19 uint64_t nrequests; member in struct:tcache_bin_stats_s
32 * many times, resulting many increments to nrequests, but only one
43 uint64_t nrequests; member in struct:malloc_bin_stats_s
68 * many times, resulting many increments to nrequests, but only one
79 uint64_t nrequests; member in struct:malloc_large_stats_s
  /external/jemalloc/test/unit/
stats.c 63 uint64_t nmalloc, ndalloc, nrequests; local
81 assert_d_eq(mallctl("stats.arenas.0.huge.nrequests", &nrequests, &sz,
89 assert_u64_le(nmalloc, nrequests,
90 "nmalloc should no larger than nrequests");
166 uint64_t epoch, nmalloc, ndalloc, nrequests; local
192 assert_d_eq(mallctl("stats.arenas.0.small.nrequests", &nrequests, &sz,
202 assert_u64_gt(nrequests, 0,
203 "nrequests should be greater than zero")
215 uint64_t epoch, nmalloc, ndalloc, nrequests; local
259 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes; local
331 uint64_t epoch, nmalloc, ndalloc, nrequests; local
    [all...]
  /external/jemalloc/src/
stats.c 70 " ndalloc nrequests nfills nflushes"
88 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local
115 CTL_IJ_GET("stats.arenas.0.bins.0.nrequests",
116 &nrequests, uint64_t);
133 allocated, nmalloc, ndalloc, nrequests,
168 "large: size pages nmalloc ndalloc nrequests"
172 uint64_t nmalloc, ndalloc, nrequests; local
179 CTL_IJ_GET("stats.arenas.0.lruns.0.nrequests", &nrequests,
181 if (nrequests == 0)
    [all...]

Completed in 421 milliseconds