Home
last modified time | relevance | path

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

/bionic/benchmarks/
Dstdlib_benchmark.cpp44 mallopt(M_DECAY_TIME, 0); in BM_stdlib_malloc_free_default()
53 mallopt(M_DECAY_TIME, 1); in BM_stdlib_malloc_free_decay1()
57 mallopt(M_DECAY_TIME, 0); in BM_stdlib_malloc_free_decay1()
79 mallopt(M_DECAY_TIME, 0); in BM_stdlib_calloc_free_default()
88 mallopt(M_DECAY_TIME, 1); in BM_stdlib_calloc_free_decay1()
92 mallopt(M_DECAY_TIME, 0); in BM_stdlib_calloc_free_decay1()
119 mallopt(M_DECAY_TIME, 0); in BM_stdlib_malloc_forty_default()
128 mallopt(M_DECAY_TIME, 1); in BM_stdlib_malloc_forty_decay1()
132 mallopt(M_DECAY_TIME, 0); in BM_stdlib_malloc_forty_decay1()
140 mallopt(M_DECAY_TIME, 0); in BM_stdlib_malloc_multiple_8192_allocs_default()
[all …]
Dmalloc_sql_benchmark.cpp108 mallopt(M_DECAY_TIME, 0); in BM_malloc_sql_trace_default()
118 mallopt(M_DECAY_TIME, 1); in BM_malloc_sql_trace_decay1()
125 mallopt(M_DECAY_TIME, 0); in BM_malloc_sql_trace_decay1()
Dmalloc_benchmark.cpp42 mallopt(M_DECAY_TIME, 1); in BM_mallopt_purge()
68 mallopt(M_DECAY_TIME, 0); in BM_mallopt_purge()
/bionic/docs/
Dnative_allocator.md55 When set to zero, `mallopt(M_DECAY_TIME, 0)`, it is expected that an
60 When set to non-zero, `mallopt(M_DECAY_TIME, 1)`, an allocator can delay the
72 For all applications on Android, the call `mallopt(M_DECAY_TIME, 1)` is
81 purged when `M_DECAY_TIME` is set to one. This is useful if you have a
178 To run the benchmarks with `mallopt(M_DECAY_TIME, 0)`, use these commands:
183 To run the benchmarks with `mallopt(M_DECAY_TIME, 1)`, use these commands:
210 To run the benchmarks with `mallopt(M_DECAY_TIME, 0)`, use these commands:
215 To run the benchmarks with `mallopt(M_DECAY_TIME, 1)`, use these commands:
230 To run the benchmarks with `mallopt(M_DECAY_TIME, 0)`, use these commands:
235 To run the benchmarks with `mallopt(M_DECAY_TIME, 1)`, use these command:
[all …]
/bionic/libc/include/
Dmalloc.h165 #define M_DECAY_TIME (-100) macro
/bionic/tests/
Dmalloc_stress_test.cpp44 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1)); in TEST()
Dmalloc_test.cpp646 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1)); in TEST()
647 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 0)); in TEST()
648 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1)); in TEST()
649 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 0)); in TEST()
/bionic/libc/bionic/
Djemalloc_wrapper.cpp69 if (param == M_DECAY_TIME) { in je_mallopt()