OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:prof_accumbytes
(Results
1 - 4
of
4
) sorted by null
/external/jemalloc/src/
tcache.c
73
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;
390
if (config_prof && tcache->
prof_accumbytes
> 0 &&
391
arena_prof_accum(tcache->arena, tcache->
prof_accumbytes
))
arena.c
[
all
...]
/external/jemalloc/include/jemalloc/internal/
tcache.h
84
uint64_t
prof_accumbytes
;/* Cleared after arena_prof_accum() */
member in struct:tcache_s
309
tcache->
prof_accumbytes
+= size;
357
tcache->
prof_accumbytes
+= size;
arena.h
329
uint64_t
prof_accumbytes
;
member in struct:arena_s
411
size_t binind, uint64_t
prof_accumbytes
);
863
arena->
prof_accumbytes
+= accumbytes;
864
if (arena->
prof_accumbytes
>= prof_interval) {
865
arena->
prof_accumbytes
-= prof_interval;
[
all
...]
Completed in 475 milliseconds