OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opt_quarantine
(Results
1 - 8
of
8
) sorted by null
/external/jemalloc/include/jemalloc/internal/
quarantine.h
50
assert(config_fill &&
opt_quarantine
);
jemalloc_internal.h
431
extern size_t
opt_quarantine
;
1077
if (slow_path && config_fill && unlikely(
opt_quarantine
))
1094
if (config_fill && unlikely(
opt_quarantine
))
private_namespace.h
368
#define
opt_quarantine
JEMALLOC_N(
opt_quarantine
)
macro
private_unnamespace.h
368
#undef
opt_quarantine
macro
/external/jemalloc/src/
quarantine.c
125
assert(
opt_quarantine
);
135
if (quarantine->curbytes + usize >
opt_quarantine
) {
136
size_t upper_bound = (
opt_quarantine
>= usize) ?
opt_quarantine
146
if (quarantine->curbytes + usize <=
opt_quarantine
) {
jemalloc.c
38
size_t
opt_quarantine
= ZU(0);
variable
285
if (config_fill && unlikely(
opt_quarantine
))
845
| (
opt_quarantine
? flag_opt_quarantine : 0)
875
opt_quarantine
= JEMALLOC_VALGRIND_QUARANTINE_DEFAULT;
1130
CONF_HANDLE_SIZE_T(
opt_quarantine
, "quarantine",
[
all
...]
ctl.c
101
CTL_PROTO(
opt_quarantine
)
275
{NAME("quarantine"), CTL(
opt_quarantine
)},
[
all
...]
arena.c
[
all
...]
Completed in 514 milliseconds