Lines Matching refs:t_
2032 #define within_sel(p_, t_, i_) \ argument
2033 ((i_) < (p_)->np_qlast[(t_)])
2034 #define nonempty_sel(p_, t_) \ argument
2035 (within_sel((p_), (t_), (p_)->np_qfirst[(t_)]))
2036 #define foreach_selected_ring(p_, t_, i_, kring_) \ argument
2037 for ((t_) = nonempty_sel((p_), NR_RX) ? NR_RX : NR_TX, \
2038 (i_) = (p_)->np_qfirst[(t_)]; \
2039 (t_ == NR_RX || \
2040 (t == NR_TX && within_sel((p_), (t_), (i_)))) && \
2041 ((kring_) = NMR((p_)->np_na, (t_))[(i_)]); \
2042 (i_) = within_sel((p_), (t_), (i_) + 1) ? (i_) + 1 : \
2043 (++(t_) < NR_TXRX ? (p_)->np_qfirst[(t_)] : (i_)))