Home
last modified time | relevance | path

Searched refs:nshards (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/jemalloc/src/
H A Dbin.c31 size_t end_size, size_t nshards) { in bin_update_shard_size() argument
32 if (nshards > BIN_SHARDS_MAX || nshards == 0) { in bin_update_shard_size()
47 bin_shard_sizes[i] = (unsigned)nshards; in bin_update_shard_size()
H A Dstats.c294 COL_HDR(row, nshards, NULL, right, 9, unsigned) in stats_arena_bins_print()
342 uint32_t nregs, nshards; in stats_arena_bins_print() local
359 CTL_M2_GET("arenas.bin.0.nshards", j, &nshards, uint32_t); in stats_arena_bins_print()
440 col_nshards.unsigned_val = nshards; in stats_arena_bins_print()
H A Darena.c2069 unsigned nshards = bin_infos[i].n_shards; in arena_new() local
2071 bin_addr += nshards * sizeof(bin_t); in arena_new()
2072 for (unsigned j = 0; j < nshards; j++) { in arena_new()
H A Djemalloc.c1232 size_t nshards; in malloc_conf_init_helper() local
1235 &size_start, &size_end, &nshards); in malloc_conf_init_helper()
1238 size_end, nshards)) { in malloc_conf_init_helper()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dbin.h94 size_t end_size, size_t nshards);