Home
last modified time | relevance | path

Searched refs:nhbins (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/jemalloc/src/
H A Dtcache.c19 unsigned nhbins; variable
83 if (tcache->next_gc_bin == nhbins) { in tcache_event_hard()
234 assert(binind < nhbins); in tcache_bin_flush_large()
421 memset(tcache->bins_large, 0, sizeof(cache_bin_t) * (nhbins - SC_NBINS)); in tcache_init()
434 for (; i < nhbins; i++) { in tcache_init()
523 for (unsigned i = SC_NBINS; i < nhbins; i++) { in tcache_flush_cache()
616 for (; i < nhbins; i++) { in tcache_stats_merge()
747 nhbins = sz_size2index(tcache_maxclass) + 1; in tcache_boot()
750 tcache_bin_info = (cache_bin_info_t *)base_alloc(tsdn, b0get(), nhbins in tcache_boot()
771 for (; i < nhbins; i++) { in tcache_boot()
H A Dstats.c1175 unsigned nhbins; in stats_general_print() local
1176 CTL_GET("arenas.nhbins", &nhbins, unsigned); in stats_general_print()
1178 emitter_type_unsigned, &nhbins); in stats_general_print()
H A Darena.c208 for (; i < nhbins; i++) { in arena_stats_merge()
H A Dctl.c2555 CTL_RO_NL_GEN(arenas_nhbins, nhbins, unsigned) in CTL_RO_NL_GEN()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache_externs.h13 extern unsigned nhbins;
H A Djemalloc_internal_inlines_a.h119 assert(binind >= SC_NBINS &&binind < nhbins); in tcache_large_bin_get()
H A Dtcache_inlines.h110 assert(binind >= SC_NBINS &&binind < nhbins); in tcache_alloc_large()
H A Darena_inlines_b.h272 if (szind < nhbins) { in arena_dalloc_large()
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h366 #define nhbins JEMALLOC_N(nhbins) macro