HomeSort by: relevance | last modified time | path
    Searched defs:dirty_decay_ms (Results 1 - 10 of 10) sorted by relevancy

  /src/external/bsd/jemalloc/dist/test/unit/
malloc_conf_2.c 3 const char *malloc_conf = "dirty_decay_ms:1000";
4 const char *malloc_conf_2_conf_harder = "dirty_decay_ms:1234";
15 ssize_t dirty_decay_ms; local
16 size_t sz = sizeof(dirty_decay_ms);
18 int err = mallctl("opt.dirty_decay_ms", &dirty_decay_ms, &sz, NULL, 0);
20 expect_zd_eq(dirty_decay_ms, 1234,
mallctl.c 299 TEST_MALLCTL_OPT(ssize_t, dirty_decay_ms, always);
558 ssize_t dirty_decay_ms, orig_dirty_decay_ms, prev_dirty_decay_ms; local
561 expect_d_eq(mallctl("arena.0.dirty_decay_ms",
565 dirty_decay_ms = -2;
566 expect_d_eq(mallctl("arena.0.dirty_decay_ms", NULL, NULL,
567 (void *)&dirty_decay_ms, sizeof(ssize_t)), EFAULT,
570 dirty_decay_ms = 0x7fffffff;
571 expect_d_eq(mallctl("arena.0.dirty_decay_ms", NULL, NULL,
572 (void *)&dirty_decay_ms, sizeof(ssize_t)), 0,
575 for (prev_dirty_decay_ms = dirty_decay_ms, dirty_decay_ms = -1
761 ssize_t dirty_decay_ms, orig_dirty_decay_ms, prev_dirty_decay_ms; local
    [all...]
  /src/external/bsd/jemalloc.old/dist/test/unit/
malloc_conf_2.c 3 const char *malloc_conf = "dirty_decay_ms:1000";
4 const char *malloc_conf_2_conf_harder = "dirty_decay_ms:1234";
15 ssize_t dirty_decay_ms; local
16 size_t sz = sizeof(dirty_decay_ms);
18 int err = mallctl("opt.dirty_decay_ms", &dirty_decay_ms, &sz, NULL, 0);
20 expect_zd_eq(dirty_decay_ms, 1234,
mallctl.c 299 TEST_MALLCTL_OPT(ssize_t, dirty_decay_ms, always);
558 ssize_t dirty_decay_ms, orig_dirty_decay_ms, prev_dirty_decay_ms; local
561 expect_d_eq(mallctl("arena.0.dirty_decay_ms",
565 dirty_decay_ms = -2;
566 expect_d_eq(mallctl("arena.0.dirty_decay_ms", NULL, NULL,
567 (void *)&dirty_decay_ms, sizeof(ssize_t)), EFAULT,
570 dirty_decay_ms = 0x7fffffff;
571 expect_d_eq(mallctl("arena.0.dirty_decay_ms", NULL, NULL,
572 (void *)&dirty_decay_ms, sizeof(ssize_t)), 0,
575 for (prev_dirty_decay_ms = dirty_decay_ms, dirty_decay_ms = -1
761 ssize_t dirty_decay_ms, orig_dirty_decay_ms, prev_dirty_decay_ms; local
    [all...]
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
ctl.h 74 ssize_t dirty_decay_ms; member in struct:ctl_arena_s
  /src/external/bsd/jemalloc/include/jemalloc/internal/
ctl.h 74 ssize_t dirty_decay_ms; member in struct:ctl_arena_s
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
ctl.h 74 ssize_t dirty_decay_ms; member in struct:ctl_arena_s
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
ctl.h 74 ssize_t dirty_decay_ms; member in struct:ctl_arena_s
  /src/external/bsd/jemalloc/dist/src/
stats.c 1047 ssize_t dirty_decay_ms, muzzy_decay_ms; local
1075 CTL_M2_GET("stats.arenas.0.dirty_decay_ms", i, &dirty_decay_ms,
1095 emitter_json_kv(emitter, "dirty_decay_ms", emitter_type_ssize,
1096 &dirty_decay_ms);
1143 if (dirty_decay_ms >= 0) {
1145 col_decay_time.ssize_val = dirty_decay_ms;
1503 OPT_WRITE_SSIZE_T_MUTABLE("dirty_decay_ms", "arenas.dirty_decay_ms")
1594 CTL_GET("arenas.dirty_decay_ms", &ssv, ssize_t)
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
stats.c 1047 ssize_t dirty_decay_ms, muzzy_decay_ms; local
1075 CTL_M2_GET("stats.arenas.0.dirty_decay_ms", i, &dirty_decay_ms,
1095 emitter_json_kv(emitter, "dirty_decay_ms", emitter_type_ssize,
1096 &dirty_decay_ms);
1143 if (dirty_decay_ms >= 0) {
1145 col_decay_time.ssize_val = dirty_decay_ms;
1503 OPT_WRITE_SSIZE_T_MUTABLE("dirty_decay_ms", "arenas.dirty_decay_ms")
1594 CTL_GET("arenas.dirty_decay_ms", &ssv, ssize_t)
    [all...]

Completed in 18 milliseconds