Searched defs:opt_lg_tcache_max (Results 1 - 3 of 3) 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);
/external/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h271 #define opt_lg_tcache_max JEMALLOC_N(opt_lg_tcache_max) macro
H A Dprivate_unnamespace.h271 #undef opt_lg_tcache_max macro

Completed in 59 milliseconds