Searched refs:accumbytes (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_inlines_a.h8 uint64_t accumbytes) {
21 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED);
23 a1 = a0 + accumbytes;
29 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0,
33 a0 = prof_accum->accumbytes;
34 a1 = a0 + accumbytes;
39 prof_accum->accumbytes = a1;
58 a0 = atomic_load_u64(&prof_accum->accumbytes, ATOMIC_RELAXED);
62 } while (!atomic_compare_exchange_weak_u64(&prof_accum->accumbytes, &a0,
66 a0 = prof_accum->accumbytes;
7 prof_accum_add(tsdn_t *tsdn, prof_accum_t *prof_accum, uint64_t accumbytes) argument
[all...]
H A Dprof_structs.h26 uint64_t accumbytes; member in struct:prof_accum_s
28 atomic_u64_t accumbytes;
37 uint64_t accumbytes; member in struct:prof_cnt_s
H A Darena_inlines_a.h25 arena_prof_accum(tsdn_t *tsdn, arena_t *arena, uint64_t accumbytes) { argument
32 return prof_accum_add(tsdn, &arena->prof_accum, accumbytes);
H A Dprof_externs.h65 uint64_t *accumbytes);
/freebsd-current/contrib/jemalloc/src/
H A Dprof.c358 tctx->cnts.accumbytes += usize;
923 assert(tctx->cnts.accumbytes == 0);
1347 tdata->cnt_summed.accumbytes +=
1348 tctx->dump_cnts.accumbytes;
1365 gctx->cnt_summed.accumbytes += tctx->dump_cnts.accumbytes;
1413 tctx->dump_cnts.accumbytes)) {
1565 arg->cnt_all.accumbytes += tdata->cnt_summed.accumbytes;
1588 tdata->cnt_summed.accumbytes,
1946 prof_cnt_all(uint64_t *curobjs, uint64_t *curbytes, uint64_t *accumobjs, uint64_t *accumbytes) argument
[all...]

Completed in 135 milliseconds