Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/jemalloc/include/jemalloc/internal/
H A 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()
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()
56 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED); in prof_accum_cancel()
63 malloc_mutex_lock(tsdn, &prof_accum->mtx); in prof_accum_cancel()
64 a0 = prof_accum->accumbytes; in prof_accum_cancel()
67 prof_accum->accumbytes = a1; in prof_accum_cancel()
[all …]
H A Darena_structs_b.h115 prof_accum_t prof_accum; member
H A Darena_inlines_a.h32 return prof_accum_add(tsdn, &arena->prof_accum, accumbytes); in arena_prof_accum()
H A Dprof_externs.h65 bool prof_accum_init(tsdn_t *tsdn, prof_accum_t *prof_accum);
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A 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()
H A Darena.c1427 prof_accum_cancel(tsdn, &arena->prof_accum, usize); in arena_prof_promote()
1799 if (prof_accum_init(tsdn, &arena->prof_accum)) { in arena_new()
/f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/
H A Dmallctl.c182 TEST_MALLCTL_OPT(bool, prof_accum, prof); in TEST_BEGIN()
/f-stack/app/redis-5.0.5/deps/jemalloc/
H A 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.
H A DMakefile.in189 $(srcroot)test/unit/prof_accum.c \