Lines Matching refs:buf_res
180 struct usb_page_search buf_res; in dwc_otg_write_fifo() local
188 usbd_get_page(pc, offset, &buf_res); in dwc_otg_write_fifo()
190 if (buf_res.length > temp) in dwc_otg_write_fifo()
191 buf_res.length = temp; in dwc_otg_write_fifo()
195 fifo, buf_res.buffer, buf_res.length / 4); in dwc_otg_write_fifo()
197 offset += buf_res.length; in dwc_otg_write_fifo()
198 fifo += buf_res.length; in dwc_otg_write_fifo()
199 temp -= buf_res.length; in dwc_otg_write_fifo()
230 struct usb_page_search buf_res; in dwc_otg_read_fifo() local
238 usbd_get_page(pc, offset, &buf_res); in dwc_otg_read_fifo()
240 if (buf_res.length > temp) in dwc_otg_read_fifo()
241 buf_res.length = temp; in dwc_otg_read_fifo()
245 sc->sc_current_rx_fifo, buf_res.buffer, buf_res.length / 4); in dwc_otg_read_fifo()
247 offset += buf_res.length; in dwc_otg_read_fifo()
248 sc->sc_current_rx_fifo += buf_res.length; in dwc_otg_read_fifo()
249 sc->sc_current_rx_bytes -= buf_res.length; in dwc_otg_read_fifo()
250 temp -= buf_res.length; in dwc_otg_read_fifo()