OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cnt_merged
(Results
1 - 2
of
2
) sorted by null
/external/jemalloc/include/jemalloc/internal/
prof.h
127
/* Protects nlimbo,
cnt_merged
, and cnts_ql. */
144
/* When threads exit, they merge their stats into
cnt_merged
. */
145
prof_cnt_t
cnt_merged
;
member in struct:prof_ctx_s
440
* so operate directly on old_cnt->ctx->
cnt_merged
.
443
old_ctx->
cnt_merged
.curobjs--;
444
old_ctx->
cnt_merged
.curbytes -= old_usize;
513
* directly on cnt->ctx->
cnt_merged
.
516
ctx->
cnt_merged
.curobjs--;
517
ctx->
cnt_merged
.curbytes -= size;
/external/jemalloc/src/
prof.c
403
memset(&ctx->
cnt_merged
, 0, sizeof(prof_cnt_t));
425
if (ql_first(&ctx->cnts_ql) == NULL && ctx->
cnt_merged
.curobjs == 0 &&
427
assert(ctx->
cnt_merged
.curbytes == 0);
428
assert(ctx->
cnt_merged
.accumobjs == 0);
429
assert(ctx->
cnt_merged
.accumbytes == 0);
458
ctx->
cnt_merged
.curobjs += cnt->cnts.curobjs;
459
ctx->
cnt_merged
.curbytes += cnt->cnts.curbytes;
460
ctx->
cnt_merged
.accumobjs += cnt->cnts.accumobjs;
461
ctx->
cnt_merged
.accumbytes += cnt->cnts.accumbytes;
464
ctx->
cnt_merged
.curobjs == 0 && ctx->nlimbo == 0)
[
all
...]
Completed in 40 milliseconds