Searched refs:tcaches (Results 1 – 12 of 12) sorted by relevance
/external/jemalloc/src/ |
D | tcache.c | 16 tcaches_t *tcaches; variable 456 if (tcaches == NULL) { in tcaches_create_prep() 457 tcaches = base_alloc(tsd_tsdn(tsd), sizeof(tcache_t *) * in tcaches_create_prep() 459 if (tcaches == NULL) { in tcaches_create_prep() 504 *r_ind = (unsigned)(elm - tcaches); in tcaches_create() 506 elm = &tcaches[tcaches_past]; in tcaches_create() 533 tcaches_elm_flush(tsd, &tcaches[ind]); in tcaches_flush() 542 elm = &tcaches[ind]; in tcaches_destroy()
|
/external/jemalloc_new/src/ |
D | tcache.c | 25 tcaches_t *tcaches; variable 578 if (tcaches == NULL) { in tcaches_create_prep() 579 tcaches = base_alloc(tsd_tsdn(tsd), b0get(), sizeof(tcache_t *) in tcaches_create_prep() 581 if (tcaches == NULL) { in tcaches_create_prep() 621 *r_ind = (unsigned)(elm - tcaches); in tcaches_create() 623 elm = &tcaches[tcaches_past]; in tcaches_create() 651 tcache_t *tcache = tcaches_elm_remove(tsd, &tcaches[ind]); in tcaches_flush() 661 tcaches_t *elm = &tcaches[ind]; in tcaches_destroy()
|
/external/jemalloc_new/include/jemalloc/internal/ |
D | tcache_externs.h | 28 extern tcaches_t *tcaches;
|
D | tcache_inlines.h | 220 tcaches_t *elm = &tcaches[ind]; in tcaches_get()
|
D | private_namespace.h | 351 #define tcaches JEMALLOC_N(tcaches) macro
|
D | private_namespace_jet.h | 358 #define tcaches JEMALLOC_N(tcaches) macro
|
/external/jemalloc/include/jemalloc/internal/ |
D | tcache.h | 143 extern tcaches_t *tcaches; 474 tcaches_t *elm = &tcaches[ind]; in tcaches_get()
|
D | private_symbols.txt | 537 tcaches
|
D | private_namespace.h | 534 #define tcaches JEMALLOC_N(tcaches) macro
|
D | private_unnamespace.h | 534 #undef tcaches
|
/external/jemalloc_new/ |
D | ChangeLog | 150 - Post-fork(2), re-initialize the list of tcaches associated with each arena 151 to contain no tcaches except the forking thread's. (@interwq) 707 - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and
|
/external/jemalloc/ |
D | ChangeLog | 333 - Add support for explicit tcaches. The "tcache.create", "tcache.flush", and
|