HomeSort by: relevance | last modified time | path
    Searched defs:ndalloc (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
bin_stats.h 12 * each to nmalloc and ndalloc.
15 uint64_t ndalloc; member in struct:bin_stats_s
arena_stats.h 28 arena_stats_u64_t ndalloc; member in struct:arena_stats_large_s
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
bin_stats.h 12 * each to nmalloc and ndalloc.
15 uint64_t ndalloc; member in struct:bin_stats_s
arena_stats.h 28 arena_stats_u64_t ndalloc; member in struct:arena_stats_large_s
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
bin_stats.h 12 * each to nmalloc and ndalloc.
15 uint64_t ndalloc; member in struct:bin_stats_s
arena_stats.h 20 locked_u64_t ndalloc; member in struct:arena_stats_large_s
arena_inlines_b.h 462 uint64_t ndalloc; member in struct:arena_dalloc_bin_locked_info_s
492 info->ndalloc = 0;
519 info->ndalloc++;
538 bin->stats.ndalloc += info->ndalloc;
539 assert(bin->stats.curregs >= (size_t)info->ndalloc);
540 bin->stats.curregs -= (size_t)info->ndalloc;
  /src/external/bsd/jemalloc/include/jemalloc/internal/
bin_stats.h 12 * each to nmalloc and ndalloc.
15 uint64_t ndalloc; member in struct:bin_stats_s
arena_stats.h 20 locked_u64_t ndalloc; member in struct:arena_stats_large_s
arena_inlines_b.h 462 uint64_t ndalloc; member in struct:arena_dalloc_bin_locked_info_s
492 info->ndalloc = 0;
519 info->ndalloc++;
538 bin->stats.ndalloc += info->ndalloc;
539 assert(bin->stats.curregs >= (size_t)info->ndalloc);
540 bin->stats.curregs -= (size_t)info->ndalloc;
  /src/external/bsd/jemalloc.old/dist/test/unit/
stats.c 32 uint64_t nmalloc, ndalloc, nrequests; local
49 assert_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
58 assert_u64_ge(nmalloc, ndalloc,
59 "nmalloc should be at least as large as ndalloc");
146 uint64_t epoch, nmalloc, ndalloc, nrequests; local
167 assert_d_eq(mallctl("stats.arenas.0.small.ndalloc", (void *)&ndalloc,
178 assert_u64_ge(nmalloc, ndalloc,
179 "nmalloc should be at least as large as ndalloc");
191 uint64_t epoch, nmalloc, ndalloc; local
231 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes; local
319 uint64_t epoch, nmalloc, ndalloc; local
    [all...]
  /src/external/bsd/jemalloc/dist/test/unit/
stats.c 35 uint64_t nmalloc, ndalloc, nrequests; local
52 expect_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
61 expect_u64_ge(nmalloc, ndalloc,
62 "nmalloc should be at least as large as ndalloc");
150 uint64_t epoch, nmalloc, ndalloc, nrequests; local
171 expect_d_eq(mallctl("stats.arenas.0.small.ndalloc", (void *)&ndalloc,
182 expect_u64_ge(nmalloc, ndalloc,
183 "nmalloc should be at least as large as ndalloc");
195 uint64_t epoch, nmalloc, ndalloc; local
235 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes; local
328 uint64_t epoch, nmalloc, ndalloc; local
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
stats.c 250 COL(ndalloc, right, 13, uint64)
297 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local
316 CTL_M2_M4_GET("stats.arenas.0.bins.0.ndalloc", i, j, &ndalloc,
339 emitter_json_kv(emitter, "ndalloc", emitter_type_uint64,
340 &ndalloc);
384 col_ndalloc.uint64_val = ndalloc;
441 COL(ndalloc, right, 13, uint64)
453 uint64_t nmalloc, ndalloc, nrequests; local
458 CTL_M2_M4_GET("stats.arenas.0.lextents.0.ndalloc", i, j
    [all...]
arena.c 131 uint64_t ndalloc = arena_stats_read_u64(tsdn, &arena->stats, local
132 &arena->stats.lstats[i].ndalloc);
133 arena_stats_accum_u64(&lstats[i].ndalloc, ndalloc);
134 arena_stats_accum_u64(&astats->ndalloc_large, ndalloc);
143 assert(nmalloc >= ndalloc);
144 assert(nmalloc - ndalloc <= SIZE_T_MAX);
145 size_t curlextents = (size_t)(nmalloc - ndalloc);
317 &arena->stats.lstats[hindex].ndalloc, 1);
1554 bin->stats.ndalloc++
    [all...]
  /src/external/bsd/jemalloc/dist/src/
arena.c 115 uint64_t ndalloc = locked_read_u64(tsdn, local
117 &arena->stats.lstats[i].ndalloc);
118 locked_inc_u64_unsynchronized(&lstats[i].ndalloc, ndalloc);
119 astats->ndalloc_large += ndalloc;
138 assert(nmalloc >= ndalloc);
139 assert(nmalloc - ndalloc <= SIZE_T_MAX);
140 size_t curlextents = (size_t)(nmalloc - ndalloc);
319 &arena->stats.lstats[hindex].ndalloc, 1);
stats.c 327 COL_HDR(row, ndalloc, NULL, right, 13, uint64)
403 uint64_t nmalloc, ndalloc, nrequests, nfills, nflushes; local
442 CTL_LEAF(stats_arenas_mib, 5, "ndalloc", &ndalloc, uint64_t);
461 emitter_json_kv(emitter, "ndalloc", emitter_type_uint64,
462 &ndalloc);
519 col_ndalloc.uint64_val = ndalloc;
520 col_ndalloc_ps.uint64_val = rate_per_second(ndalloc, uptime);
581 COL_HDR(row, ndalloc, NULL, right, 13, uint64)
617 uint64_t nmalloc, ndalloc, nrequests local
    [all...]

Completed in 118 milliseconds