Searched refs:M_DECAY_TIME (Results 1 – 8 of 8) sorted by relevance
/bionic/benchmarks/ |
D | stdlib_benchmark.cpp | 44 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 …]
|
D | malloc_sql_benchmark.cpp | 108 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()
|
D | malloc_benchmark.cpp | 42 mallopt(M_DECAY_TIME, 1); in BM_mallopt_purge() 68 mallopt(M_DECAY_TIME, 0); in BM_mallopt_purge()
|
/bionic/docs/ |
D | native_allocator.md | 55 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/ |
D | malloc.h | 165 #define M_DECAY_TIME (-100) macro
|
/bionic/tests/ |
D | malloc_stress_test.cpp | 44 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1)); in TEST()
|
D | malloc_test.cpp | 646 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/ |
D | jemalloc_wrapper.cpp | 69 if (param == M_DECAY_TIME) { in je_mallopt()
|