Searched defs:xfer_count (Results 1 - 8 of 8) sorted by last modified time

/drivers/usb/dwc2/
H A Dhcd.h81 * @xfer_count: Number of bytes transferred so far
137 u32 xfer_count; member in struct:dwc2_host_chan
/drivers/staging/comedi/drivers/
H A Drtd520.c380 int xfer_count; /* # to transfer data. 0->1/2FIFO */ member in struct:rtd_private
708 } else if (devpriv->xfer_count > 0) {
711 if (ai_read_n(dev, s, devpriv->xfer_count) < 0)
962 devpriv->xfer_count = cmd->chanlist_len;
966 devpriv->xfer_count =
969 if (devpriv->xfer_count < cmd->chanlist_len) {
971 devpriv->xfer_count = cmd->chanlist_len;
973 devpriv->xfer_count =
974 (devpriv->xfer_count +
977 devpriv->xfer_count *
[all...]
/drivers/net/ethernet/8390/
H A Daxnet_cs.c655 int xfer_count = count; local
666 buf[count-1] = inb(nic_base + AXNET_DATAPORT), xfer_count++;
H A Dne.c633 int xfer_count = count; local
661 xfer_count++;
684 if (((ring_offset + xfer_count) & 0xff) == low)
690 ring_offset + xfer_count, addr);
H A Dpcnet_cs.c1162 int xfer_count = count; local
1184 buf[count-1] = inb(nic_base + PCNET_DATAPORT), xfer_count++;
1198 if (((ring_offset + xfer_count) & 0xff) == (addr & 0xff))
1204 ring_offset + xfer_count, addr);
/drivers/dma/
H A Dat_hdmac.c602 size_t xfer_count; local
637 for (offset = 0; offset < len; offset += xfer_count << src_width) {
638 xfer_count = min_t(size_t, (len - offset) >> src_width,
647 desc->lli.ctrla = ctrla | xfer_count;
H A Dtxx9dmac.c724 size_t xfer_count; local
737 for (offset = 0; offset < len; offset += xfer_count) {
738 xfer_count = min_t(size_t, len - offset, TXX9_DMA_MAX_COUNT);
744 if (xfer_count > 0x100 &&
745 (xfer_count & 0xff) >= 0xfa &&
746 (xfer_count & 0xff) <= 0xff)
747 xfer_count -= 0x20;
749 if (xfer_count > 0x80 &&
750 (xfer_count & 0x7f) >= 0x7e &&
751 (xfer_count
[all...]
/drivers/dma/dw/
H A Dcore.c684 size_t xfer_count; local
716 for (offset = 0; offset < len; offset += xfer_count << src_width) {
717 xfer_count = min_t(size_t, (len - offset) >> src_width,
727 desc->lli.ctlhi = xfer_count;
728 desc->len = xfer_count << src_width;

Completed in 142 milliseconds