Lines Matching full:tab
72 struct sk_buff **tab; member
100 } while (q->tab[q->head] == NULL); in choke_zap_head_holes()
110 } while (q->tab[q->tail] == NULL); in choke_zap_tail_holes()
118 struct sk_buff *skb = q->tab[idx]; in choke_drop_by_idx()
120 q->tab[idx] = NULL; in choke_drop_by_idx()
188 skb = q->tab[*pidx]; in choke_peek_random()
193 return q->tab[*pidx = q->head]; in choke_peek_random()
269 q->tab[q->tail] = skb; in choke_enqueue()
295 skb = q->tab[q->head]; in choke_dequeue()
296 q->tab[q->head] = NULL; in choke_dequeue()
310 struct sk_buff *skb = q->tab[q->head]; in choke_reset()
320 if (q->tab) in choke_reset()
321 memset(q->tab, 0, (q->tab_mask + 1) * sizeof(struct sk_buff *)); in choke_reset()
380 old = q->tab; in choke_change()
386 struct sk_buff *skb = q->tab[q->head]; in choke_change()
406 q->tab = ntab; in choke_change()
479 choke_free(q->tab); in choke_destroy()
486 return (q->head != q->tail) ? q->tab[q->head] : NULL; in choke_peek_head()