Searched refs:prof_accumbytes (Results 1 - 4 of 4) sorted by last modified time

/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Darena.h323 uint64_t prof_accumbytes; member in struct:arena_s
542 tcache_bin_t *tbin, szind_t binind, uint64_t prof_accumbytes);
1050 arena->prof_accumbytes += accumbytes;
1051 if (arena->prof_accumbytes >= prof_interval) {
1052 arena->prof_accumbytes -= prof_interval;
H A Dtcache.h85 uint64_t prof_accumbytes;/* Cleared after arena_prof_accum(). */ member in struct:tcache_s
333 tcache->prof_accumbytes += usize;
394 tcache->prof_accumbytes += usize;
/freebsd-11-stable/contrib/jemalloc/src/
H A Darena.c2376 szind_t binind, uint64_t prof_accumbytes)
2383 if (config_prof && arena_prof_accum(tsdn, arena, prof_accumbytes))
3540 arena->prof_accumbytes = 0;
2375 arena_tcache_fill_small(tsdn_t *tsdn, arena_t *arena, tcache_bin_t *tbin, szind_t binind, uint64_t prof_accumbytes) argument
H A Dtcache.c80 tcache->prof_accumbytes : 0);
82 tcache->prof_accumbytes = 0;
111 tcache->prof_accumbytes))
113 tcache->prof_accumbytes = 0;
197 tcache->prof_accumbytes);
198 tcache->prof_accumbytes = 0;
391 if (config_prof && tcache->prof_accumbytes > 0 &&
392 arena_prof_accum(tsd_tsdn(tsd), arena, tcache->prof_accumbytes))

Completed in 114 milliseconds