Lines Matching refs:elm
615 tcaches_t *elm; in tcaches_create() local
618 elm = tcaches_avail; in tcaches_create()
620 elm->tcache = tcache; in tcaches_create()
621 *r_ind = (unsigned)(elm - tcaches); in tcaches_create()
623 elm = &tcaches[tcaches_past]; in tcaches_create()
624 elm->tcache = tcache; in tcaches_create()
637 tcaches_elm_remove(tsd_t *tsd, tcaches_t *elm) { in tcaches_elm_remove() argument
640 if (elm->tcache == NULL) { in tcaches_elm_remove()
643 tcache_t *tcache = elm->tcache; in tcaches_elm_remove()
644 elm->tcache = NULL; in tcaches_elm_remove()
661 tcaches_t *elm = &tcaches[ind]; in tcaches_destroy() local
662 tcache_t *tcache = tcaches_elm_remove(tsd, elm); in tcaches_destroy()
663 elm->next = tcaches_avail; in tcaches_destroy()
664 tcaches_avail = elm; in tcaches_destroy()