Searched refs:prof_accumbytes (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/jemalloc/src/
H A Dtcache.c73 config_prof ? tcache->prof_accumbytes : 0);
75 tcache->prof_accumbytes = 0;
100 if (arena_prof_accum(arena, tcache->prof_accumbytes))
102 tcache->prof_accumbytes = 0;
186 tcache->prof_accumbytes);
187 tcache->prof_accumbytes = 0;
350 if (config_prof && tcache->prof_accumbytes > 0 &&
351 arena_prof_accum(tcache->arena, tcache->prof_accumbytes))
H A Darena.c1332 uint64_t prof_accumbytes)
1341 if (config_prof && arena_prof_accum(arena, prof_accumbytes))
2112 arena->prof_accumbytes = 0;
1331 arena_tcache_fill_small(arena_t *arena, tcache_bin_t *tbin, size_t binind, uint64_t prof_accumbytes) argument
/freebsd-10.1-release/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache.h72 uint64_t prof_accumbytes;/* Cleared after arena_prof_accum() */ member in struct:tcache_s
329 tcache->prof_accumbytes += arena_bin_info[binind].reg_size;
380 tcache->prof_accumbytes += size;
H A Darena.h336 uint64_t prof_accumbytes; member in struct:arena_s
404 size_t binind, uint64_t prof_accumbytes);
673 arena->prof_accumbytes += accumbytes;
674 if (arena->prof_accumbytes >= prof_interval) {
675 arena->prof_accumbytes -= prof_interval;

Completed in 66 milliseconds