OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opt_lg_tcache_max
(Results
1 - 6
of
6
) sorted by null
/external/jemalloc/src/
tcache.c
8
ssize_t
opt_lg_tcache_max
= LG_TCACHE_MAXCLASS_DEFAULT;
variable
508
* If necessary, clamp
opt_lg_tcache_max
, now that large_maxclass is
511
if (
opt_lg_tcache_max
< 0 || (1U <<
opt_lg_tcache_max
) < SMALL_MAXCLASS)
513
else if ((1U <<
opt_lg_tcache_max
) > large_maxclass)
516
tcache_maxclass = (1U <<
opt_lg_tcache_max
);
ctl.c
106
CTL_PROTO(
opt_lg_tcache_max
)
280
{NAME("lg_tcache_max"), CTL(
opt_lg_tcache_max
)},
[
all
...]
jemalloc.c
1155
CONF_HANDLE_SSIZE_T(
opt_lg_tcache_max
,
[
all
...]
/external/jemalloc/include/jemalloc/internal/
tcache.h
44
/* (1U <<
opt_lg_tcache_max
) is used to compute tcache_maxclass. */
122
extern ssize_t
opt_lg_tcache_max
;
private_namespace.h
357
#define
opt_lg_tcache_max
JEMALLOC_N(
opt_lg_tcache_max
)
macro
private_unnamespace.h
357
#undef
opt_lg_tcache_max
macro
Completed in 509 milliseconds