Searched refs:nhbins (Results 1 – 9 of 9) sorted by relevance
19 unsigned nhbins; variable83 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()
1175 unsigned nhbins; in stats_general_print() local1176 CTL_GET("arenas.nhbins", &nhbins, unsigned); in stats_general_print()1178 emitter_type_unsigned, &nhbins); in stats_general_print()
208 for (; i < nhbins; i++) { in arena_stats_merge()
2555 CTL_RO_NL_GEN(arenas_nhbins, nhbins, unsigned) in CTL_RO_NL_GEN()
13 extern unsigned nhbins;
119 assert(binind >= SC_NBINS &&binind < nhbins); in tcache_large_bin_get()
110 assert(binind >= SC_NBINS &&binind < nhbins); in tcache_alloc_large()
272 if (szind < nhbins) { in arena_dalloc_large()
366 #define nhbins JEMALLOC_N(nhbins) macro