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

/external/jemalloc/include/jemalloc/internal/
H A Dprivate_namespace.h268 #define opt_lg_dirty_mult JEMALLOC_N(opt_lg_dirty_mult) macro
H A Dprivate_unnamespace.h268 #undef opt_lg_dirty_mult macro
H A Darena.h39 * (nactive >> opt_lg_dirty_mult) >= ndirty
41 * So, supposing that opt_lg_dirty_mult is 3, there can be no less than 8 times
387 extern ssize_t opt_lg_dirty_mult;
/external/jemalloc/src/
H A Dctl.c93 CTL_PROTO(opt_lg_dirty_mult)
234 {NAME("lg_dirty_mult"), CTL(opt_lg_dirty_mult)},
1158 CTL_RO_NL_GEN(opt_lg_dirty_mult, opt_lg_dirty_mult, ssize_t)
H A Darena.c7 ssize_t opt_lg_dirty_mult = LG_DIRTY_MULT_DEFAULT; variable
875 if (opt_lg_dirty_mult < 0)
883 threshold = (arena->nactive >> opt_lg_dirty_mult);
917 size_t threshold = (arena->nactive >> opt_lg_dirty_mult);
1111 assert((arena->nactive >> opt_lg_dirty_mult) < (arena->ndirty -
H A Djemalloc.c604 CONF_HANDLE_SSIZE_T(opt_lg_dirty_mult, "lg_dirty_mult",

Completed in 384 milliseconds