Lines Matching refs:actual
191 __func__, len, req->req.actual, req->req.length); in isp1760_udc_receive()
193 len = min(len, req->req.length - req->req.actual); in isp1760_udc_receive()
208 buf = req->req.buf + req->req.actual; in isp1760_udc_receive()
219 req->req.actual += len; in isp1760_udc_receive()
228 __func__, req, req->req.actual, req->req.length, ep->maxpacket, in isp1760_udc_receive()
237 if (req->req.actual == req->req.length || len < ep->maxpacket) { in isp1760_udc_receive()
249 u32 *buf = req->req.buf + req->req.actual; in isp1760_udc_transmit()
252 req->packet_size = min(req->req.length - req->req.actual, in isp1760_udc_transmit()
256 __func__, req->packet_size, req->req.actual, in isp1760_udc_transmit()
357 req->req.actual += req->packet_size; in isp1760_ep_tx_complete()
359 need_zlp = req->req.actual == req->req.length && in isp1760_ep_tx_complete()
365 req, req->req.actual, req->req.length, ep->maxpacket, in isp1760_ep_tx_complete()
372 if (req->req.actual == req->req.length && !need_zlp) { in isp1760_ep_tx_complete()
837 _req->actual = 0; in isp1760_ep_queue()