Lines Matching refs:k

431 	int k;  in fill_isoc_urb()  local
443 for (k = 0; k < num_packets; k++) { in fill_isoc_urb()
444 urb->iso_frame_desc[k].offset = packet_size * k; in fill_isoc_urb()
445 urb->iso_frame_desc[k].length = packet_size; in fill_isoc_urb()
446 urb->iso_frame_desc[k].actual_length = 0; in fill_isoc_urb()
457 int i, k, errcode; in start_isoc_chain() local
488 for (k = 0; k < num_packets_per_urb; k++) { in start_isoc_chain()
490 iso_frame_desc[k].offset = in start_isoc_chain()
491 k * packet_size; in start_isoc_chain()
493 iso_frame_desc[k].length = in start_isoc_chain()
547 int k, tx_offset, num_isoc_packets, sink, len, current_len, in tx_iso_complete() local
564 for (k = 0; k < iso_packets[fifon]; ++k) { in tx_iso_complete()
565 errcode = urb->iso_frame_desc[k].status; in tx_iso_complete()
569 k, errcode); in tx_iso_complete()
600 for (k = 0; k < num_isoc_packets; ++k) { in tx_iso_complete()
633 urb->iso_frame_desc[k].offset = tx_offset; in tx_iso_complete()
634 urb->iso_frame_desc[k].length = in tx_iso_complete()
639 urb->iso_frame_desc[k].offset = in tx_iso_complete()
642 urb->iso_frame_desc[k].length = 1; in tx_iso_complete()
685 int k, len, errcode, offset, num_isoc_packets, fifon, maxlen, in rx_iso_complete() local
712 for (k = 0; k < num_isoc_packets; ++k) { in rx_iso_complete()
713 len = urb->iso_frame_desc[k].actual_length; in rx_iso_complete()
714 offset = urb->iso_frame_desc[k].offset; in rx_iso_complete()
716 iso_status = urb->iso_frame_desc[k].status; in rx_iso_complete()
722 k, iso_status); in rx_iso_complete()