Lines Matching refs:t
47 static inline union active_open_entry *atid2entry(const struct tid_info *t, in atid2entry() argument
50 return &t->atid_tab[atid - t->atid_base]; in atid2entry()
53 static inline union listen_entry *stid2entry(const struct tid_info *t, in stid2entry() argument
56 return &t->stid_tab[stid - t->stid_base]; in stid2entry()
62 static inline struct t3c_tid_entry *lookup_tid(const struct tid_info *t, in lookup_tid() argument
65 struct t3c_tid_entry *t3c_tid = tid < t->ntids ? in lookup_tid()
66 &(t->tid_tab[tid]) : NULL; in lookup_tid()
74 static inline struct t3c_tid_entry *lookup_stid(const struct tid_info *t, in lookup_stid() argument
79 if (tid < t->stid_base || tid >= t->stid_base + t->nstids) in lookup_stid()
82 e = stid2entry(t, tid); in lookup_stid()
83 if ((void *)e->next >= (void *)t->tid_tab && in lookup_stid()
84 (void *)e->next < (void *)&t->atid_tab[t->natids]) in lookup_stid()
93 static inline struct t3c_tid_entry *lookup_atid(const struct tid_info *t, in lookup_atid() argument
98 if (tid < t->atid_base || tid >= t->atid_base + t->natids) in lookup_atid()
101 e = atid2entry(t, tid); in lookup_atid()
102 if ((void *)e->next >= (void *)t->tid_tab && in lookup_atid()
103 (void *)e->next < (void *)&t->atid_tab[t->natids]) in lookup_atid()