Searched refs:opt_narenas (Results 1 – 6 of 6) sorted by relevance
/external/jemalloc_new/include/jemalloc/internal/ |
D | jemalloc_internal_externs.h | 20 extern unsigned opt_narenas;
|
D | private_namespace_jet.h | 29 #define opt_narenas JEMALLOC_N(opt_narenas) macro
|
D | private_namespace.h | 29 #define opt_narenas JEMALLOC_N(opt_narenas) macro
|
/external/jemalloc_new/src/ |
D | jemalloc.c | 69 unsigned opt_narenas = 0; variable 1102 CONF_HANDLE_UNSIGNED(opt_narenas, "narenas", 1, 1422 "available. Setting narenas to %u.\n", opt_narenas ? 1423 opt_narenas : malloc_narenas_default()); 1448 if (opt_narenas < n) { 1463 opt_narenas = n; 1467 if (opt_narenas == 0) { 1468 opt_narenas = malloc_narenas_default(); 1470 assert(opt_narenas > 0); 1472 narenas_auto = opt_narenas;
|
D | ctl.c | 86 CTL_PROTO(opt_narenas) 287 {NAME("narenas"), CTL(opt_narenas)}, 1660 CTL_RO_NL_GEN(opt_narenas, opt_narenas, unsigned) in CTL_RO_CONFIG_GEN()
|
/external/jemalloc_new/test/unit/ |
D | mallctl.c | 343 assert_u_eq(narenas, opt_narenas, "Number of arenas incorrect"); in TEST_BEGIN()
|