HomeSort by relevance Sort by last modified time
    Searched refs:tcaches (Results 1 - 9 of 9) sorted by null

  /external/jemalloc_new/include/jemalloc/internal/
tcache_externs.h 21 * Explicit tcaches, managed via the tcache.{create,flush,destroy} mallctls and
22 * usable via the MALLOCX_TCACHE() flag. The automatic per thread tcaches are
23 * completely disjoint from this data structure. tcaches starts off as a sparse
28 extern tcaches_t *tcaches;
tcache_inlines.h 220 tcaches_t *elm = &tcaches[ind];
private_namespace.h 351 #define tcaches JEMALLOC_N(tcaches) macro
private_namespace_jet.h 358 #define tcaches JEMALLOC_N(tcaches) macro
  /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. */
24 /* Protects tcaches{,_past,_avail}. */
263 /* Link into list of extant tcaches. */
276 /* Unlink from list of extant tcaches. */
456 if (tcaches == NULL) {
457 tcaches = base_alloc(tsd_tsdn(tsd), sizeof(tcache_t *) *
459 if (tcaches == NULL) {
504 *r_ind = (unsigned)(elm - tcaches);
    [all...]
  /external/jemalloc_new/src/
tcache.c 25 tcaches_t *tcaches; variable
27 /* Index of first element within tcaches that has never been used. */
30 /* Head of singly linked list tracking available tcaches elements. */
33 /* Protects tcaches{,_past,_avail}. */
306 /* Link into list of extant tcaches. */
326 /* Unlink from list of extant tcaches. */
578 if (tcaches == NULL) {
579 tcaches = base_alloc(tsd_tsdn(tsd), b0get(), sizeof(tcache_t *)
581 if (tcaches == NULL) {
621 *r_ind = (unsigned)(elm - tcaches);
    [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;
474 tcaches_t *elm = &tcaches[ind];
private_namespace.h 534 #define tcaches JEMALLOC_N(tcaches) macro
    [all...]
private_unnamespace.h 534 #undef tcaches macro

Completed in 60 milliseconds