Home
last modified time | relevance | path

Searched refs:prof_accum (Results 1 – 15 of 15) sorted by relevance

/external/jemalloc_new/include/jemalloc/internal/
Dprof_inlines_a.h7 prof_accum_add(tsdn_t *tsdn, prof_accum_t *prof_accum, uint64_t accumbytes) { in prof_accum_add() argument
20 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED); in prof_accum_add()
28 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0, in prof_accum_add()
31 malloc_mutex_lock(tsdn, &prof_accum->mtx); in prof_accum_add()
32 a0 = prof_accum->accumbytes; in prof_accum_add()
38 prof_accum->accumbytes = a1; in prof_accum_add()
39 malloc_mutex_unlock(tsdn, &prof_accum->mtx); in prof_accum_add()
45 prof_accum_cancel(tsdn_t *tsdn, prof_accum_t *prof_accum, size_t usize) { in prof_accum_cancel() argument
56 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED); in prof_accum_cancel()
60 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0, in prof_accum_cancel()
[all …]
Darena_structs_b.h115 prof_accum_t prof_accum; member
Darena_inlines_a.h32 return prof_accum_add(tsdn, &arena->prof_accum, accumbytes); in arena_prof_accum()
Dprof_externs.h65 bool prof_accum_init(tsdn_t *tsdn, prof_accum_t *prof_accum);
/external/jemalloc_new/src/
Dprof.c1762 prof_accum_init(tsdn_t *tsdn, prof_accum_t *prof_accum) { in prof_accum_init() argument
1766 if (malloc_mutex_init(&prof_accum->mtx, "prof_accum", in prof_accum_init()
1770 prof_accum->accumbytes = 0; in prof_accum_init()
1772 atomic_store_u64(&prof_accum->accumbytes, 0, ATOMIC_RELAXED); in prof_accum_init()
Darena.c1431 prof_accum_cancel(tsdn, &arena->prof_accum, usize); in arena_prof_promote()
1803 if (prof_accum_init(tsdn, &arena->prof_accum)) { in arena_new()
/external/jemalloc/
DAndroid.bp241 "test/unit/prof_accum.c",
DChangeLog509 prof_accum unit test.
719 - Change the "opt.prof_accum" default from true to false.
788 but only occurred in non-default configurations (prof_accum:false).
883 if "opt.prof_accum" were disabled.
DMakefile.in173 $(srcroot)test/unit/prof_accum.c \
/external/jemalloc_new/
DAndroid.bp248 "test/unit/prof_accum.c",
DChangeLog883 prof_accum unit test.
1093 - Change the "opt.prof_accum" default from true to false.
1162 but only occurred in non-default configurations (prof_accum:false).
1257 if "opt.prof_accum" were disabled.
DMakefile.in189 $(srcroot)test/unit/prof_accum.c \
/external/jemalloc/test/unit/
Dmallctl.c189 TEST_MALLCTL_OPT(bool, prof_accum, prof); in TEST_BEGIN()
/external/jemalloc_new/test/unit/
Dmallctl.c182 TEST_MALLCTL_OPT(bool, prof_accum, prof); in TEST_BEGIN()
/external/jemalloc/src/
Dstats.c750 OPT_WRITE_BOOL(prof_accum, ",") in stats_general_print()