Lines Matching refs:tab
76 struct sk_buff **tab; member
104 } while (q->tab[q->head] == NULL); in choke_zap_head_holes()
114 } while (q->tab[q->tail] == NULL); in choke_zap_tail_holes()
121 struct sk_buff *skb = q->tab[idx]; in choke_drop_by_idx()
123 q->tab[idx] = NULL; in choke_drop_by_idx()
242 skb = q->tab[*pidx]; in choke_peek_random()
247 return q->tab[*pidx = q->head]; in choke_peek_random()
332 q->tab[q->tail] = skb; in choke_enqueue()
364 skb = q->tab[q->head]; in choke_dequeue()
365 q->tab[q->head] = NULL; in choke_dequeue()
449 old = q->tab; in choke_change()
454 struct sk_buff *skb = q->tab[q->head]; in choke_change()
473 q->tab = ntab; in choke_change()
546 choke_free(q->tab); in choke_destroy()
612 return (q->head != q->tail) ? q->tab[q->head] : NULL; in choke_peek_head()