Home
last modified time | relevance | path

Searched refs:tcache_maxclass (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache_inlines.h135 assert(usize <= tcache_maxclass); in tcache_alloc_large()
196 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= tcache_maxclass); in tcache_dalloc_large()
H A Dtcache_externs.h16 extern size_t tcache_maxclass;
H A Darena_inlines_b.h168 if (likely(size <= tcache_maxclass)) { in arena_malloc()
173 assert(size > tcache_maxclass); in arena_malloc()
/freebsd/contrib/jemalloc/src/
H A Dtcache.c20 size_t tcache_maxclass; variable
737 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()
H A Darena.c1613 if (bumped_usize <= tcache_maxclass && tcache != NULL) { in arena_dalloc_promoted()
H A Dctl.c2553 CTL_RO_NL_GEN(arenas_tcache_max, tcache_maxclass, size_t) in CTL_RO_NL_GEN()
/freebsd/lib/libc/stdlib/malloc/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h380 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro