Home
last modified time | relevance | path

Searched refs:muzzy_decay_ms (Results 1 – 8 of 8) sorted by relevance

/external/jemalloc_new/test/unit/
Dmallctl.c168 TEST_MALLCTL_OPT(ssize_t, muzzy_decay_ms, always); in TEST_BEGIN()
439 ssize_t muzzy_decay_ms, orig_muzzy_decay_ms, prev_muzzy_decay_ms; in TEST_BEGIN() local
446 muzzy_decay_ms = -2; in TEST_BEGIN()
448 (void *)&muzzy_decay_ms, sizeof(ssize_t)), EFAULT, in TEST_BEGIN()
451 muzzy_decay_ms = 0x7fffffff; in TEST_BEGIN()
453 (void *)&muzzy_decay_ms, sizeof(ssize_t)), 0, in TEST_BEGIN()
456 for (prev_muzzy_decay_ms = muzzy_decay_ms, muzzy_decay_ms = -1; in TEST_BEGIN()
457 muzzy_decay_ms < 20; prev_muzzy_decay_ms = muzzy_decay_ms, in TEST_BEGIN()
458 muzzy_decay_ms++) { in TEST_BEGIN()
462 (void *)&old_muzzy_decay_ms, &sz, (void *)&muzzy_decay_ms, in TEST_BEGIN()
[all …]
Ddecay.c39 do_arena_create(ssize_t dirty_decay_ms, ssize_t muzzy_decay_ms) { in do_arena_create() argument
58 (void *)&muzzy_decay_ms, sizeof(muzzy_decay_ms)), 0, in do_arena_create()
/external/jemalloc_new/
DTUNING.md39 [muzzy_decay_ms](http://jemalloc.net/jemalloc.3.html#opt.muzzy_decay_ms)
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`
/external/jemalloc_new/include/jemalloc/internal/
Darena_externs.h21 ssize_t *muzzy_decay_ms, size_t *nactive, size_t *ndirty, size_t *nmuzzy);
23 const char **dss, ssize_t *dirty_decay_ms, ssize_t *muzzy_decay_ms,
Dctl.h70 ssize_t muzzy_decay_ms; member
/external/jemalloc_new/src/
Dstats.c527 ssize_t dirty_decay_ms, muzzy_decay_ms; in stats_arena_print() local
555 CTL_M2_GET("stats.arenas.0.muzzy_decay_ms", i, &muzzy_decay_ms, in stats_arena_print()
576 &muzzy_decay_ms); in stats_arena_print()
670 if (muzzy_decay_ms >= 0) { in stats_arena_print()
672 decay_time.ssize_val = muzzy_decay_ms; in stats_arena_print()
Darena.c65 const char **dss, ssize_t *dirty_decay_ms, ssize_t *muzzy_decay_ms, in arena_basic_stats_merge() argument
70 *muzzy_decay_ms = arena_muzzy_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
84 muzzy_decay_ms, nactive, ndirty, nmuzzy); in arena_stats_merge()
755 ssize_t muzzy_decay_ms = arena_muzzy_decay_ms_get(arena); in arena_decay_stashed() local
768 if (!all && muzzy_decay_ms != 0 && in arena_decay_stashed()
Dctl.c689 ctl_arena->muzzy_decay_ms = -1; in ctl_arena_clear()
713 &ctl_arena->muzzy_decay_ms, &ctl_arena->pactive, in ctl_arena_stats_amerge()
732 &ctl_arena->muzzy_decay_ms, &ctl_arena->pactive, in ctl_arena_stats_amerge()
2656 CTL_RO_GEN(stats_arenas_i_muzzy_decay_ms, arenas_i(mib[2])->muzzy_decay_ms, in CTL_RO_NL_CGEN()