Lines Matching refs:full_len
2907 unsigned int i, len, full_len, num_trbs = 0; in count_sg_trbs_needed() local
2909 full_len = urb->transfer_buffer_length; in count_sg_trbs_needed()
2914 len = min_t(unsigned int, len, full_len); in count_sg_trbs_needed()
2915 full_len -= len; in count_sg_trbs_needed()
2916 if (full_len == 0) in count_sg_trbs_needed()
3129 unsigned int enqd_len, block_len, trb_buff_len, full_len; in xhci_queue_bulk_tx() local
3138 full_len = urb->transfer_buffer_length; in xhci_queue_bulk_tx()
3149 block_len = full_len; in xhci_queue_bulk_tx()
3175 for (enqd_len = 0; first_trb || enqd_len < full_len; in xhci_queue_bulk_tx()
3183 if (enqd_len + trb_buff_len > full_len) in xhci_queue_bulk_tx()
3184 trb_buff_len = full_len - enqd_len; in xhci_queue_bulk_tx()
3197 if (enqd_len + trb_buff_len < full_len) { in xhci_queue_bulk_tx()
3209 if (enqd_len + trb_buff_len >= full_len) { in xhci_queue_bulk_tx()
3222 full_len, urb, more_trbs_coming); in xhci_queue_bulk_tx()