HomeSort by relevance Sort by last modified time
    Searched refs:opt_lg_tcache_max (Results 1 - 6 of 6) sorted by null

  /external/jemalloc/src/
tcache.c 8 ssize_t opt_lg_tcache_max = LG_TCACHE_MAXCLASS_DEFAULT; variable
556 * If necessary, clamp opt_lg_tcache_max, now that large_maxclass is
559 if (opt_lg_tcache_max < 0 || (ZU(1) << opt_lg_tcache_max) < SMALL_MAXCLASS)
561 else if ((ZU(1) << opt_lg_tcache_max) > large_maxclass)
564 tcache_maxclass = (ZU(1) << opt_lg_tcache_max);
ctl.c 106 CTL_PROTO(opt_lg_tcache_max)
283 {NAME("lg_tcache_max"), CTL(opt_lg_tcache_max)},
    [all...]
jemalloc.c 1272 CONF_HANDLE_SSIZE_T(opt_lg_tcache_max,
    [all...]
  /external/jemalloc/include/jemalloc/internal/
tcache.h 44 /* (1U << opt_lg_tcache_max) is used to compute tcache_maxclass. */
122 extern ssize_t opt_lg_tcache_max;
private_namespace.h 378 #define opt_lg_tcache_max JEMALLOC_N(opt_lg_tcache_max) macro
    [all...]
private_unnamespace.h 378 #undef opt_lg_tcache_max macro

Completed in 105 milliseconds