/Linux-v4.19/drivers/scsi/ |
D | scsi_trace.c | 33 sector_t lba = 0, txlen = 0; in scsi_trace_rw6() local 38 txlen = cdb[4]; in scsi_trace_rw6() 41 (unsigned long long)lba, (unsigned long long)txlen); in scsi_trace_rw6() 51 sector_t lba = 0, txlen = 0; in scsi_trace_rw10() local 57 txlen |= (cdb[7] << 8); in scsi_trace_rw10() 58 txlen |= cdb[8]; in scsi_trace_rw10() 61 (unsigned long long)lba, (unsigned long long)txlen, in scsi_trace_rw10() 76 sector_t lba = 0, txlen = 0; in scsi_trace_rw12() local 82 txlen |= (cdb[6] << 24); in scsi_trace_rw12() 83 txlen |= (cdb[7] << 16); in scsi_trace_rw12() [all …]
|
/Linux-v4.19/tools/lib/traceevent/ |
D | plugin_scsi.c | 159 sector_t lba = 0, txlen = 0; in scsi_trace_rw6() local 164 txlen = cdb[4]; in scsi_trace_rw6() 167 (unsigned long long)lba, (unsigned long long)txlen); in scsi_trace_rw6() 176 sector_t lba = 0, txlen = 0; in scsi_trace_rw10() local 182 txlen |= (cdb[7] << 8); in scsi_trace_rw10() 183 txlen |= cdb[8]; in scsi_trace_rw10() 186 (unsigned long long)lba, (unsigned long long)txlen, in scsi_trace_rw10() 200 sector_t lba = 0, txlen = 0; in scsi_trace_rw12() local 206 txlen |= (cdb[6] << 24); in scsi_trace_rw12() 207 txlen |= (cdb[7] << 16); in scsi_trace_rw12() [all …]
|
/Linux-v4.19/drivers/net/wireless/ath/ath10k/ |
D | bmi.c | 280 u32 txlen; in ath10k_bmi_write_memory() local 292 txlen = min(length, BMI_MAX_DATA_SIZE - hdrlen); in ath10k_bmi_write_memory() 295 memcpy(cmd.write_mem.payload, buffer, txlen); in ath10k_bmi_write_memory() 296 txlen = roundup(txlen, 4); in ath10k_bmi_write_memory() 300 cmd.write_mem.len = __cpu_to_le32(txlen); in ath10k_bmi_write_memory() 302 ret = ath10k_hif_exchange_bmi_msg(ar, &cmd, hdrlen + txlen, in ath10k_bmi_write_memory() 311 txlen = min(txlen, length); in ath10k_bmi_write_memory() 313 address += txlen; in ath10k_bmi_write_memory() 314 buffer += txlen; in ath10k_bmi_write_memory() 315 length -= txlen; in ath10k_bmi_write_memory() [all …]
|
/Linux-v4.19/drivers/staging/rtl8723bs/hal/ |
D | rtl8723bs_xmit.c | 211 u32 txlen, max_xmit_len; in xmit_xmitframes() local 285 txlen = txdesc_size + rtw_wlan_pkt_size(pxmitframe); in xmit_xmitframes() 288 ((_RND(pxmitbuf->len, 8) + txlen) > max_xmit_len) || in xmit_xmitframes() 359 txlen = txdesc_size + pxmitframe->attrib.last_txcmdsz; in xmit_xmitframes() 360 pxmitframe->pg_num = (txlen + 127)/128; in xmit_xmitframes() 361 pxmitbuf->pg_num += (txlen + 127)/128; in xmit_xmitframes() 364 pxmitbuf->ptail += _RND(txlen, 8); /* round to 8 bytes alignment */ in xmit_xmitframes() 365 pxmitbuf->len = _RND(pxmitbuf->len, 8) + txlen; in xmit_xmitframes()
|
/Linux-v4.19/drivers/media/usb/dvb-usb/ |
D | dib0700_core.c | 56 static int dib0700_ctrl_wr(struct dvb_usb_device *d, u8 *tx, u8 txlen) in dib0700_ctrl_wr() argument 61 debug_dump(tx, txlen, deb_data); in dib0700_ctrl_wr() 64 tx[0], USB_TYPE_VENDOR | USB_DIR_OUT, 0, 0, tx, txlen, in dib0700_ctrl_wr() 67 if (status != txlen) in dib0700_ctrl_wr() 68 deb_data("ep 0 write error (status = %d, len: %d)\n",status,txlen); in dib0700_ctrl_wr() 74 int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) in dib0700_ctrl_rd() argument 79 if (txlen < 2) { in dib0700_ctrl_rd() 83 if (txlen > 4) { in dib0700_ctrl_rd() 89 debug_dump(tx,txlen,deb_data); in dib0700_ctrl_rd() 91 value = ((txlen - 2) << 8) | tx[1]; in dib0700_ctrl_rd() [all …]
|
D | technisat-usb2.c | 85 u8 device_addr, u8 *tx, u8 txlen, u8 *rx, u8 rxlen) in technisat_usb2_i2c_access() argument 95 debug_dump(tx, txlen, deb_i2c); in technisat_usb2_i2c_access() 98 if (txlen > 62) { in technisat_usb2_i2c_access() 101 txlen = 62; in technisat_usb2_i2c_access() 117 memcpy(&b[2], tx, txlen); in technisat_usb2_i2c_access() 120 b, 2 + txlen, in technisat_usb2_i2c_access()
|
D | dib0700.h | 62 extern int dib0700_ctrl_rd(struct dvb_usb_device *d, u8 *tx, u8 txlen, u8 *rx, u8 rxlen);
|
/Linux-v4.19/drivers/media/dvb-frontends/ |
D | dibx000_common.c | 100 u16 txlen = msg->len, len; in dibx000_master_i2c_write() local 103 while (txlen) { in dibx000_master_i2c_write() 106 len = txlen > 8 ? 8 : txlen; in dibx000_master_i2c_write() 122 if (txlen == msg->len) in dibx000_master_i2c_write() 125 if (txlen-len == 0 && stop) in dibx000_master_i2c_write() 132 txlen -= len; in dibx000_master_i2c_write()
|
/Linux-v4.19/drivers/isdn/hardware/avm/ |
D | b1dma.c | 374 u32 txlen; in b1dma_dispatch_tx() local 396 txlen = (u8 *)p - (u8 *)dma->sendbuf.dmabuf; in b1dma_dispatch_tx() 398 printk(KERN_DEBUG "tx: put msg len=%d\n", txlen); in b1dma_dispatch_tx() 401 txlen = skb->len - 2; in b1dma_dispatch_tx() 408 skb->data[2], txlen); in b1dma_dispatch_tx() 413 txlen = (txlen + 3) & ~3; in b1dma_dispatch_tx() 416 b1dma_writel(card, txlen, AMCC_TXLEN); in b1dma_dispatch_tx() 868 u32 txoff, txlen, rxoff, rxlen, csr; in b1dma_proc_show() local 926 txlen = b1dma_readl(card, AMCC_TXLEN); in b1dma_proc_show() 938 seq_printf(m, "%-16s %lu\n", "txlen", (unsigned long)txlen); in b1dma_proc_show()
|
D | c4.c | 416 u32 txlen; in c4_dispatch_tx() local 449 txlen = (u8 *)p - (u8 *)dma->sendbuf.dmabuf; in c4_dispatch_tx() 451 printk(KERN_DEBUG "%s: tx put msg len=%d\n", card->name, txlen); in c4_dispatch_tx() 454 txlen = skb->len - 2; in c4_dispatch_tx() 461 card->name, skb->data[2], txlen); in c4_dispatch_tx() 466 txlen = (txlen + 3) & ~3; in c4_dispatch_tx() 469 c4outmeml(card->mbase + MBOX_DOWN_LEN, txlen); in c4_dispatch_tx()
|
/Linux-v4.19/drivers/video/backlight/ |
D | hx8357.c | 215 u8 *txbuf, u16 txlen, in hx8357_spi_write_then_read() argument 227 if (txlen) { in hx8357_spi_write_then_read() 230 local_txbuf = kcalloc(txlen, sizeof(*local_txbuf), GFP_KERNEL); in hx8357_spi_write_then_read() 235 for (i = 0; i < txlen; i++) { in hx8357_spi_write_then_read() 241 xfer[0].len = 2 * txlen; in hx8357_spi_write_then_read() 258 if (txlen) in hx8357_spi_write_then_read()
|
/Linux-v4.19/drivers/usb/serial/ |
D | mxuport.c | 581 u32 txlen; in mxuport_tx_empty() local 594 txlen = get_unaligned_be32(len_buf); in mxuport_tx_empty() 595 dev_dbg(&port->dev, "%s - tx len = %u\n", __func__, txlen); in mxuport_tx_empty() 597 if (txlen != 0) in mxuport_tx_empty() 1010 size_t txlen; in mxuport_download_fw() local 1025 txlen = min_t(size_t, (fw_p->size - fwidx), DOWN_BLOCK_SIZE); in mxuport_download_fw() 1027 memcpy(fw_buf, &fw_p->data[fwidx], txlen); in mxuport_download_fw() 1029 0, 0, fw_buf, txlen); in mxuport_download_fw() 1036 fwidx += txlen; in mxuport_download_fw()
|
/Linux-v4.19/include/linux/ |
D | mISDNdsp.h | 17 unsigned int txlen);
|
D | sdla.h | 217 short txlen; member
|
/Linux-v4.19/drivers/bluetooth/ |
D | btmrvl_sdio.c | 553 int txlen = 0, tx_blocks = 0, count = 0; in btmrvl_sdio_download_fw_w_helper() local 634 txlen = len; in btmrvl_sdio_download_fw_w_helper() 645 "len = 0x%04X, txlen = %d", len, txlen); in btmrvl_sdio_download_fw_w_helper() 648 txlen = 0; in btmrvl_sdio_download_fw_w_helper() 653 if (firmwarelen - offset < txlen) in btmrvl_sdio_download_fw_w_helper() 654 txlen = firmwarelen - offset; in btmrvl_sdio_download_fw_w_helper() 656 tx_blocks = DIV_ROUND_UP(txlen, blksz_dl); in btmrvl_sdio_download_fw_w_helper() 658 memcpy(fwbuf, &firmware[offset], txlen); in btmrvl_sdio_download_fw_w_helper() 673 offset += txlen; in btmrvl_sdio_download_fw_w_helper()
|
/Linux-v4.19/drivers/tty/serial/ |
D | sc16is7xx.c | 619 unsigned int txlen, to_send, i; in sc16is7xx_handle_tx() local 635 txlen = sc16is7xx_port_read(port, SC16IS7XX_TXLVL_REG); in sc16is7xx_handle_tx() 636 if (txlen > SC16IS7XX_FIFO_SIZE) { in sc16is7xx_handle_tx() 639 txlen, SC16IS7XX_FIFO_SIZE); in sc16is7xx_handle_tx() 640 txlen = 0; in sc16is7xx_handle_tx() 642 to_send = (to_send > txlen) ? txlen : to_send; in sc16is7xx_handle_tx()
|
D | max310x.c | 723 unsigned int txlen, to_send, until_end; in max310x_handle_tx() local 740 txlen = max310x_port_read(port, MAX310X_TXFIFOLVL_REG); in max310x_handle_tx() 741 txlen = port->fifosize - txlen; in max310x_handle_tx() 742 to_send = (to_send > txlen) ? txlen : to_send; in max310x_handle_tx()
|
/Linux-v4.19/drivers/mtd/spi-nor/ |
D | mtk-quadspi.c | 162 u8 *tx, int txlen, u8 *rx, int rxlen) in mtk_nor_do_tx_rx() argument 164 int len = 1 + txlen + rxlen; in mtk_nor_do_tx_rx() 180 for (i = 0; i < txlen; i++, idx--) in mtk_nor_do_tx_rx()
|
/Linux-v4.19/drivers/isdn/mISDN/ |
D | dsp_pipeline.c | 344 unsigned int txlen) in dsp_pipeline_process_rx() argument 353 entry->elem->process_rx(entry->p, data, len, txlen); in dsp_pipeline_process_rx()
|
D | dsp.h | 277 int len, unsigned int txlen);
|
/Linux-v4.19/drivers/media/rc/ |
D | winbond-cir.c | 216 u32 txlen; member 420 for (used = 0; used < space && data->txoff != data->txlen; used++) { in wbcir_irq_tx() 432 while (data->txoff != data->txlen && data->txbuf[data->txoff] == 0) in wbcir_irq_tx() 444 } else if (data->txoff == data->txlen) { in wbcir_irq_tx() 661 data->txlen = count; in wbcir_tx()
|
/Linux-v4.19/drivers/net/wireless/marvell/mwifiex/ |
D | sdio.c | 989 u32 txlen, tx_blocks = 0, tries; in mwifiex_prog_fw_w_helper() local 1063 txlen = len; in mwifiex_prog_fw_w_helper() 1076 "len = 0x%04X, txlen = %d\n", len, txlen); in mwifiex_prog_fw_w_helper() 1079 txlen = 0; in mwifiex_prog_fw_w_helper() 1085 if (firmware_len - offset < txlen) in mwifiex_prog_fw_w_helper() 1086 txlen = firmware_len - offset; in mwifiex_prog_fw_w_helper() 1088 tx_blocks = (txlen + MWIFIEX_SDIO_BLOCK_SIZE - 1) in mwifiex_prog_fw_w_helper() 1092 memmove(fwbuf, &firmware[offset], txlen); in mwifiex_prog_fw_w_helper() 1110 offset += txlen; in mwifiex_prog_fw_w_helper()
|
D | pcie.c | 2112 u32 txlen, tx_blocks = 0, tries, len, val; in mwifiex_prog_fw_w_helper() local 2188 txlen = len; in mwifiex_prog_fw_w_helper() 2202 len, txlen); in mwifiex_prog_fw_w_helper() 2205 txlen = 0; in mwifiex_prog_fw_w_helper() 2210 if (firmware_len - offset < txlen) in mwifiex_prog_fw_w_helper() 2211 txlen = firmware_len - offset; in mwifiex_prog_fw_w_helper() 2213 tx_blocks = (txlen + card->pcie.blksz_fw_dl - 1) / in mwifiex_prog_fw_w_helper() 2217 memmove(skb->data, &firmware[offset], txlen); in mwifiex_prog_fw_w_helper() 2259 offset += txlen; in mwifiex_prog_fw_w_helper()
|
/Linux-v4.19/drivers/s390/net/ |
D | ctcm_main.h | 123 unsigned long txlen; member
|
D | ctcm_sysfs.c | 103 priv->channel[WRITE]->prof.txlen); in ctcm_print_statistics()
|