Lines Matching refs:t
50 static inline union active_open_entry *atid2entry(const struct tid_info *t, in atid2entry() argument
53 return &t->atid_tab[atid - t->atid_base]; in atid2entry()
56 static inline union listen_entry *stid2entry(const struct tid_info *t, in stid2entry() argument
59 return &t->stid_tab[stid - t->stid_base]; in stid2entry()
65 static inline struct t3c_tid_entry *lookup_tid(const struct tid_info *t, in lookup_tid() argument
68 struct t3c_tid_entry *t3c_tid = tid < t->ntids ? in lookup_tid()
69 &(t->tid_tab[tid]) : NULL; in lookup_tid()
77 static inline struct t3c_tid_entry *lookup_stid(const struct tid_info *t, in lookup_stid() argument
82 if (tid < t->stid_base || tid >= t->stid_base + t->nstids) in lookup_stid()
85 e = stid2entry(t, tid); in lookup_stid()
86 if ((void *)e->next >= (void *)t->tid_tab && in lookup_stid()
87 (void *)e->next < (void *)&t->atid_tab[t->natids]) in lookup_stid()
96 static inline struct t3c_tid_entry *lookup_atid(const struct tid_info *t, in lookup_atid() argument
101 if (tid < t->atid_base || tid >= t->atid_base + t->natids) in lookup_atid()
104 e = atid2entry(t, tid); in lookup_atid()
105 if ((void *)e->next >= (void *)t->tid_tab && in lookup_atid()
106 (void *)e->next < (void *)&t->atid_tab[t->natids]) in lookup_atid()