Searched refs:dirty_decay_ms (Results 1 – 8 of 8) sorted by relevance
/external/jemalloc_new/test/unit/ |
D | mallctl.c | 167 TEST_MALLCTL_OPT(ssize_t, dirty_decay_ms, always); in TEST_BEGIN() 407 ssize_t dirty_decay_ms, orig_dirty_decay_ms, prev_dirty_decay_ms; in TEST_BEGIN() local 414 dirty_decay_ms = -2; in TEST_BEGIN() 416 (void *)&dirty_decay_ms, sizeof(ssize_t)), EFAULT, in TEST_BEGIN() 419 dirty_decay_ms = 0x7fffffff; in TEST_BEGIN() 421 (void *)&dirty_decay_ms, sizeof(ssize_t)), 0, in TEST_BEGIN() 424 for (prev_dirty_decay_ms = dirty_decay_ms, dirty_decay_ms = -1; in TEST_BEGIN() 425 dirty_decay_ms < 20; prev_dirty_decay_ms = dirty_decay_ms, in TEST_BEGIN() 426 dirty_decay_ms++) { in TEST_BEGIN() 430 (void *)&old_dirty_decay_ms, &sz, (void *)&dirty_decay_ms, in TEST_BEGIN() [all …]
|
D | decay.c | 39 do_arena_create(ssize_t dirty_decay_ms, ssize_t muzzy_decay_ms) { in do_arena_create() argument 51 (void *)&dirty_decay_ms, sizeof(dirty_decay_ms)), 0, in do_arena_create()
|
/external/jemalloc_new/ |
D | TUNING.md | 38 * [dirty_decay_ms](http://jemalloc.net/jemalloc.3.html#opt.dirty_decay_ms) and 74 (increased `dirty_decay_ms` and / or `muzzy_decay_ms`, 75 e.g. `dirty_decay_ms:30000,muzzy_decay_ms:30000`). 80 `dirty_decay_ms` and / or `muzzy_decay_ms`, 81 e.g. `dirty_decay_ms:5000,muzzy_decay_ms:5000`), and lower arena count 87 `dirty_decay_ms` and / or `muzzy_decay_ms`,e.g. 88 `dirty_decay_ms:1000,muzzy_decay_ms:0`). 93 `narenas:1,tcache:false,dirty_decay_ms:0,muzzy_decay_ms:0` 112 time](http://jemalloc.net/jemalloc.3.html#arena.i.dirty_decay_ms) if
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | arena_externs.h | 20 unsigned *nthreads, const char **dss, ssize_t *dirty_decay_ms, 23 const char **dss, ssize_t *dirty_decay_ms, ssize_t *muzzy_decay_ms,
|
D | ctl.h | 69 ssize_t dirty_decay_ms; member
|
/external/jemalloc_new/src/ |
D | stats.c | 527 ssize_t dirty_decay_ms, muzzy_decay_ms; in stats_arena_print() local 553 CTL_M2_GET("stats.arenas.0.dirty_decay_ms", i, &dirty_decay_ms, in stats_arena_print() 574 &dirty_decay_ms); in stats_arena_print() 645 if (dirty_decay_ms >= 0) { in stats_arena_print() 647 decay_time.ssize_val = dirty_decay_ms; in stats_arena_print()
|
D | arena.c | 65 const char **dss, ssize_t *dirty_decay_ms, ssize_t *muzzy_decay_ms, in arena_basic_stats_merge() argument 69 *dirty_decay_ms = arena_dirty_decay_ms_get(arena); in arena_basic_stats_merge() 78 const char **dss, ssize_t *dirty_decay_ms, ssize_t *muzzy_decay_ms, in arena_stats_merge() argument 83 arena_basic_stats_merge(tsdn, arena, nthreads, dss, dirty_decay_ms, in arena_stats_merge()
|
D | ctl.c | 688 ctl_arena->dirty_decay_ms = -1; in ctl_arena_clear() 712 &ctl_arena->dss, &ctl_arena->dirty_decay_ms, in ctl_arena_stats_amerge() 731 &ctl_arena->dss, &ctl_arena->dirty_decay_ms, in ctl_arena_stats_amerge() 2654 CTL_RO_GEN(stats_arenas_i_dirty_decay_ms, arenas_i(mib[2])->dirty_decay_ms, in CTL_RO_NL_CGEN()
|