OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:curobjs
(Results
1 - 5
of
5
) sorted by null
/external/jemalloc/src/
quarantine.c
37
quarantine->
curobjs
= 0;
75
ret->
curobjs
= quarantine->
curobjs
;
76
if (quarantine->first + quarantine->
curobjs
<= (ZU(1) <<
80
quarantine->
curobjs
* sizeof(quarantine_obj_t));
85
size_t ncopy_b = quarantine->
curobjs
- ncopy_a;
105
quarantine->
curobjs
--;
114
while (quarantine->curbytes > upper_bound && quarantine->
curobjs
> 0)
141
if (quarantine->
curobjs
== (ZU(1) << quarantine->lg_maxobjs))
144
assert(quarantine->
curobjs
< (ZU(1) << quarantine->lg_maxobjs))
[
all
...]
prof.c
232
tctx->cnts.
curobjs
++;
247
assert(tctx->cnts.
curobjs
> 0);
249
tctx->cnts.
curobjs
--;
616
if (tctx->cnts.
curobjs
!= 0)
644
assert(tctx->cnts.
curobjs
== 0);
1052
tdata->cnt_summed.
curobjs
+= tctx->dump_cnts.
curobjs
;
1072
gctx->cnt_summed.
curobjs
+= tctx->dump_cnts.
curobjs
;
1115
"%"FMTu64"]\n", tctx->thr_uid, tctx->dump_cnts.
curobjs
,
[
all
...]
/external/jemalloc/include/jemalloc/internal/
quarantine.h
21
size_t
curobjs
;
member in struct:quarantine_s
prof.h
75
uint64_t
curobjs
;
member in struct:prof_cnt_s
/external/jemalloc/test/unit/
prof_reset.c
127
assert_u64_eq(cnt_all_copy.
curobjs
, 1, "Expected 1 allocation");
133
assert_u64_eq(cnt_all_copy.
curobjs
, 0, "Expected 0 allocations");
Completed in 3235 milliseconds