OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tcaches
(Results
1 - 4
of
4
) sorted by null
/external/jemalloc/src/
tcache.c
16
tcaches_t *
tcaches
;
variable
18
/* Index of first element within
tcaches
that has never been used. */
21
/* Head of singly linked list tracking available
tcaches
elements. */
257
/* Link into list of extant
tcaches
. */
278
/* Unlink from list of extant
tcaches
. */
448
if (
tcaches
== NULL) {
449
tcaches
= base_alloc(sizeof(tcache_t *) *
451
if (
tcaches
== NULL)
465
*r_ind = (unsigned)(elm -
tcaches
);
467
elm = &
tcaches
[tcaches_past]
[
all
...]
/external/jemalloc/include/jemalloc/internal/
tcache.h
136
* Explicit
tcaches
, managed via the tcache.{create,flush,destroy} mallctls and
137
* usable via the MALLOCX_TCACHE() flag. The automatic per thread
tcaches
are
138
* completely disjoint from this data structure.
tcaches
starts off as a sparse
143
extern tcaches_t *
tcaches
;
472
tcaches_t *elm = &
tcaches
[ind];
private_namespace.h
495
#define
tcaches
JEMALLOC_N(
tcaches
)
macro
private_unnamespace.h
495
#undef
tcaches
macro
Completed in 129 milliseconds