Searched refs:tcache_maxclass (Results 1 – 9 of 9) sorted by relevance
102 if (likely(size <= tcache_maxclass)) { in arena_malloc()107 assert(size > tcache_maxclass); in arena_malloc()155 if (likely(tcache != NULL) && usize <= tcache_maxclass) { in arena_dalloc()187 if (likely(tcache != NULL) && size <= tcache_maxclass) { in arena_sdalloc()
18 extern size_t tcache_maxclass;
215 assert(usize <= tcache_maxclass); in tcache_alloc_large()273 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= tcache_maxclass); in tcache_dalloc_large()
471 tcache_maxclass
471 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro
471 #undef tcache_maxclass
14 size_t tcache_maxclass; variable493 tcache_maxclass = SMALL_MAXCLASS; in tcache_boot()495 tcache_maxclass = (ZU(1) << opt_lg_tcache_max); in tcache_boot()497 nhbins = size2index(tcache_maxclass) + 1; in tcache_boot()
1318 if (usize <= tcache_maxclass) { in arena_dalloc_promoted()
1945 CTL_RO_NL_CGEN(config_tcache, arenas_tcache_max, tcache_maxclass, size_t) in CTL_RO_NL_GEN()
Completed in 21 milliseconds