OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cactive
(Results
1 - 3
of
3
) sorted by null
/external/jemalloc/include/jemalloc/internal/
stats.h
170
UNUSED size_t
cactive
;
local
175
cactive
= atomic_add_z(&stats_cactive, size);
176
assert(
cactive
- size <
cactive
);
182
UNUSED size_t
cactive
;
local
187
cactive
= atomic_sub_z(&stats_cactive, size);
188
assert(
cactive
+ size >
cactive
);
/external/jemalloc/test/unit/
stats.c
5
size_t *
cactive
;
local
9
sz = sizeof(
cactive
);
10
assert_d_eq(mallctl("stats.
cactive
", &
cactive
, &sz, NULL, 0), expected,
24
assert_zu_le(active, *
cactive
,
25
"active should be no larger than
cactive
");
/external/jemalloc/src/
stats.c
599
size_t *
cactive
;
local
602
CTL_GET("stats.
cactive
", &
cactive
, size_t *);
614
atomic_read_z(
cactive
));
Completed in 44 milliseconds