Home
last modified time | relevance | path

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

/external/jemalloc/src/
Dtcache.c73 config_prof ? tcache->prof_accumbytes : 0); in tcache_alloc_small_hard()
75 tcache->prof_accumbytes = 0; in tcache_alloc_small_hard()
100 if (arena_prof_accum(arena, tcache->prof_accumbytes)) in tcache_bin_flush_small()
102 tcache->prof_accumbytes = 0; in tcache_bin_flush_small()
186 tcache->prof_accumbytes); in tcache_bin_flush_large()
187 tcache->prof_accumbytes = 0; in tcache_bin_flush_large()
390 if (config_prof && tcache->prof_accumbytes > 0 && in tcache_destroy()
391 arena_prof_accum(tcache->arena, tcache->prof_accumbytes)) in tcache_destroy()
Darena.c1555 uint64_t prof_accumbytes) in arena_tcache_fill_small() argument
1564 if (config_prof && arena_prof_accum(arena, prof_accumbytes)) in arena_tcache_fill_small()
2426 arena->prof_accumbytes = 0; in arena_new()
/external/jemalloc/include/jemalloc/internal/
Dtcache.h72 uint64_t prof_accumbytes;/* Cleared after arena_prof_accum() */ member
297 tcache->prof_accumbytes += size; in tcache_alloc_small()
345 tcache->prof_accumbytes += size; in tcache_alloc_large()
Darena.h329 uint64_t prof_accumbytes; member
411 size_t binind, uint64_t prof_accumbytes);
863 arena->prof_accumbytes += accumbytes; in arena_prof_accum_impl()
864 if (arena->prof_accumbytes >= prof_interval) { in arena_prof_accum_impl()
865 arena->prof_accumbytes -= prof_interval; in arena_prof_accum_impl()