Searched refs:opt_lg_tcache_max (Results 1 - 6 of 6) sorted by relevance

/external/jemalloc/src/
H A Dtcache.c11 ssize_t opt_lg_tcache_max = LG_TCACHE_MAXCLASS_DEFAULT; variable
475 * If necessary, clamp opt_lg_tcache_max, now that arena_maxclass is
478 if (opt_lg_tcache_max < 0 || (1U << opt_lg_tcache_max) < SMALL_MAXCLASS)
480 else if ((1U << opt_lg_tcache_max) > arena_maxclass)
483 tcache_maxclass = (1U << opt_lg_tcache_max);
H A Dctl.c102 CTL_PROTO(opt_lg_tcache_max)
243 {NAME("lg_tcache_max"), CTL(opt_lg_tcache_max)},
1167 CTL_RO_NL_CGEN(config_tcache, opt_lg_tcache_max, opt_lg_tcache_max, ssize_t)
H A Djemalloc.c634 CONF_HANDLE_SSIZE_T(opt_lg_tcache_max,
/external/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h271 #define opt_lg_tcache_max JEMALLOC_N(opt_lg_tcache_max) macro
H A Dtcache.h30 /* (1U << opt_lg_tcache_max) is used to compute tcache_maxclass. */
90 extern ssize_t opt_lg_tcache_max;
H A Dprivate_unnamespace.h271 #undef opt_lg_tcache_max macro

Completed in 64 milliseconds