Home | History | Annotate | Download | only in src

Lines Matching refs:tcaches

16 tcaches_t		*tcaches;
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);
506 elm = &tcaches[tcaches_past];
533 tcaches_elm_flush(tsd, &tcaches[ind]);
542 elm = &tcaches[ind];
566 if (malloc_mutex_init(&tcaches_mtx, "tcaches", WITNESS_RANK_TCACHES)) {