Home
last modified time | relevance | path

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

/external/jemalloc/src/
Dtcache.c14 size_t tcache_maxclass; variable
560 tcache_maxclass = SMALL_MAXCLASS; in tcache_boot()
562 tcache_maxclass = large_maxclass; in tcache_boot()
564 tcache_maxclass = (ZU(1) << opt_lg_tcache_max); in tcache_boot()
570 nhbins = size2index(tcache_maxclass) + 1; in tcache_boot()
Dctl.c1925 CTL_RO_NL_CGEN(config_tcache, arenas_tcache_max, tcache_maxclass, size_t) in CTL_RO_NL_GEN()
/external/jemalloc_new/include/jemalloc/internal/
Dtcache_inlines.h137 assert(usize <= tcache_maxclass); in tcache_alloc_large()
199 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= tcache_maxclass); in tcache_dalloc_large()
Dtcache_externs.h18 extern size_t tcache_maxclass;
Darena_inlines_b.h97 if (likely(size <= tcache_maxclass)) { in arena_malloc()
102 assert(size > tcache_maxclass); in arena_malloc()
Dprivate_namespace_jet.h354 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro
Dprivate_namespace.h347 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro
/external/jemalloc/include/jemalloc/internal/
Dtcache.h133 extern size_t tcache_maxclass;
384 assert(usize <= tcache_maxclass); in tcache_alloc_large()
451 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= tcache_maxclass); in tcache_dalloc_large()
Darena.h1363 if (likely(size <= tcache_maxclass)) { in arena_malloc()
1368 assert(size > tcache_maxclass); in arena_malloc()
1482 tcache_maxclass) { in arena_dalloc()
1538 if (likely(tcache != NULL) && size <= tcache_maxclass) { in arena_sdalloc()
Dprivate_symbols.txt531 tcache_maxclass
Dprivate_namespace.h531 #define tcache_maxclass JEMALLOC_N(tcache_maxclass) macro
Dprivate_unnamespace.h531 #undef tcache_maxclass
/external/jemalloc_new/src/
Dtcache.c23 size_t tcache_maxclass; variable
676 tcache_maxclass = SMALL_MAXCLASS; in tcache_boot()
678 tcache_maxclass = (ZU(1) << opt_lg_tcache_max); in tcache_boot()
686 nhbins = sz_size2index(tcache_maxclass) + 1; in tcache_boot()
Darena.c1460 if (usize <= tcache_maxclass) { in arena_dalloc_promoted()
Dctl.c2427 CTL_RO_NL_GEN(arenas_tcache_max, tcache_maxclass, size_t) in CTL_RO_NL_GEN()