OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tcache_maxclass
(Results
1 - 6
of
6
) sorted by null
/external/jemalloc/src/
tcache.c
14
size_t
tcache_maxclass
;
variable
512
tcache_maxclass
= SMALL_MAXCLASS;
514
tcache_maxclass
= large_maxclass;
516
tcache_maxclass
= (1U << opt_lg_tcache_max);
518
nhbins = size2index(
tcache_maxclass
) + 1;
ctl.c
[
all
...]
/external/jemalloc/include/jemalloc/internal/
tcache.h
44
/* (1U << opt_lg_tcache_max) is used to compute
tcache_maxclass
. */
133
extern size_t
tcache_maxclass
;
383
assert(usize <=
tcache_maxclass
);
449
assert(tcache_salloc(ptr) <=
tcache_maxclass
);
arena.h
[
all
...]
private_namespace.h
492
#define
tcache_maxclass
JEMALLOC_N(
tcache_maxclass
)
macro
private_unnamespace.h
492
#undef
tcache_maxclass
macro
Completed in 5643 milliseconds