Home
last modified time | relevance | path

Searched refs:accumbytes (Results 1 – 5 of 5) 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()
22 a1 = a0 + accumbytes; in prof_accum_add()
28 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0, in prof_accum_add()
32 a0 = prof_accum->accumbytes; in prof_accum_add()
33 a1 = a0 + accumbytes; in prof_accum_add()
38 prof_accum->accumbytes = a1; in prof_accum_add()
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()
64 a0 = prof_accum->accumbytes; in prof_accum_cancel()
[all …]
H A Dprof_structs.h26 uint64_t accumbytes; member
28 atomic_u64_t accumbytes;
37 uint64_t accumbytes; member
H A Darena_inlines_a.h25 arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes) { in arena_prof_accum() argument
32 return prof_accum_add(tsdn, &arena->prof_accum, accumbytes); in arena_prof_accum()
H A Dprof_externs.h63 uint64_t *accumbytes);
/f-stack/app/redis-5.0.5/deps/jemalloc/src/
H A Dprof.c250 tctx->cnts.accumbytes += usize; in prof_malloc_sample_object()
1076 tdata->cnt_summed.accumbytes += in prof_tctx_merge_tdata()
1077 tctx->dump_cnts.accumbytes; in prof_tctx_merge_tdata()
1094 gctx->cnt_summed.accumbytes += tctx->dump_cnts.accumbytes; in prof_tctx_merge_gctx()
1294 arg->cnt_all.accumbytes += tdata->cnt_summed.accumbytes; in prof_tdata_merge_iter()
1676 uint64_t *accumbytes) { in prof_cnt_all() argument
1695 if (accumbytes != NULL) { in prof_cnt_all()
1696 *accumbytes = 0; in prof_cnt_all()
1714 if (accumbytes != NULL) { in prof_cnt_all()
1715 *accumbytes = prof_tdata_merge_iter_arg.cnt_all.accumbytes; in prof_cnt_all()
[all …]