Searched refs:tcache_maxclass (Results 1 – 7 of 7) sorted by relevance
135 assert(usize <= tcache_maxclass); in tcache_alloc_large()196 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= tcache_maxclass); in tcache_dalloc_large()
16 extern size_t tcache_maxclass;
168 if (likely(size <= tcache_maxclass)) { in arena_malloc()173 assert(size > tcache_maxclass); in arena_malloc()
20 size_t tcache_maxclass; variable737 tcache_maxclass = SC_SMALL_MAXCLASS; in tcache_boot()739 tcache_maxclass = (ZU(1) << opt_lg_tcache_max); in tcache_boot()747 nhbins = sz_size2index(tcache_maxclass) + 1; in tcache_boot()
1613 if (bumped_usize <= tcache_maxclass && tcache != NULL) { in arena_dalloc_promoted()
2553 CTL_RO_NL_GEN(arenas_tcache_max, tcache_maxclass, size_t) in CTL_RO_NL_GEN()
380 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro