Lines Matching full:out_index
1339 if (idx != active_dev->queue.out_index)
1391 q->out_index = 0;
1413 * Increment the queue 'out_index' (tail).
1418 q->out_index++;
1419 if (q->out_index >= q->num_elem)
1420 q->out_index = 0;
1421 return (q->out_index);
1450 return (struct rx_elem*) (q->buf_start + (q->elem_size * q->out_index));
1458 q->in_index = q->out_index;