Searched refs:tx_out (Results 1 – 9 of 9) sorted by relevance
/Linux-v5.4/drivers/net/wimax/i2400m/ |
D | tx.c | 442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in - i2400m->tx_out); in i2400m_tx_fifo_push() 668 i2400m->tx_out); in i2400m_tx_close() 851 if (i2400m->tx_in == i2400m->tx_out) { /* Empty FIFO? */ in i2400m_tx_msg_get() 853 i2400m->tx_out = 0; in i2400m_tx_msg_get() 857 tx_msg = i2400m->tx_buf + i2400m->tx_out % I2400M_TX_BUF_SIZE; in i2400m_tx_msg_get() 860 i2400m->tx_out % I2400M_TX_BUF_SIZE, in i2400m_tx_msg_get() 862 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; in i2400m_tx_msg_get() 878 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; in i2400m_tx_msg_get() 940 i2400m->tx_out += i2400m->tx_msg_size; in i2400m_tx_msg_sent() 943 BUG_ON(i2400m->tx_out > i2400m->tx_in); in i2400m_tx_msg_sent() [all …]
|
D | debugfs.c | 207 debugfs_create_size_t("tx_out", 0400, dentry, &i2400m->tx_out); in i2400m_debugfs_add()
|
D | i2400m.h | 601 size_t tx_in, tx_out; member
|
/Linux-v5.4/drivers/atm/ |
D | ambassador.h | 448 } tx_out; typedef 556 tx_out * start; 557 tx_out * ptr; 558 tx_out * limit;
|
D | ambassador.c | 435 static void tx_complete (amb_dev * dev, tx_out * tx) { in tx_complete() 1507 total += txs * (sizeof(tx_in) + sizeof(tx_out)); in create_queues() 1548 tx_out * out; in create_queues()
|
/Linux-v5.4/drivers/net/wan/ |
D | wanxl.c | 60 int tx_in, tx_out; member 277 desc = &get_status(port)->tx_descs[port->tx_out]; in wanxl_xmit() 293 port->tx_skbs[port->tx_out] = skb; in wanxl_xmit() 301 port->tx_out = (port->tx_out + 1) % TX_BUFFERS; in wanxl_xmit() 303 if (get_status(port)->tx_descs[port->tx_out].stat != PACKET_EMPTY) { in wanxl_xmit() 405 port->tx_in = port->tx_out = 0; in wanxl_open()
|
D | wanxlfw.S | 297 clrl tx_out(%d0) 451 movel tx_out(%d0), %d1 471 movel tx_out(%d0), %d1 476 tx_1: movel %d1, tx_out(%d0) 884 tx_out: .long 0, 0, 0, 0 // received from host for transmission label
|
/Linux-v5.4/drivers/crypto/ |
D | omap-aes.c | 272 struct dma_async_tx_descriptor *tx_in, *tx_out; in omap_aes_crypt_dma() local 324 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, out_sg_len, in omap_aes_crypt_dma() 327 if (!tx_out) { in omap_aes_crypt_dma() 333 tx_out->callback = omap_aes_gcm_dma_out_callback; in omap_aes_crypt_dma() 335 tx_out->callback = omap_aes_dma_out_callback; in omap_aes_crypt_dma() 336 tx_out->callback_param = dd; in omap_aes_crypt_dma() 339 dmaengine_submit(tx_out); in omap_aes_crypt_dma()
|
D | omap-des.c | 382 struct dma_async_tx_descriptor *tx_in, *tx_out; in omap_des_crypt_dma() local 434 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, out_sg_len, in omap_des_crypt_dma() 437 if (!tx_out) { in omap_des_crypt_dma() 442 tx_out->callback = omap_des_dma_out_callback; in omap_des_crypt_dma() 443 tx_out->callback_param = dd; in omap_des_crypt_dma() 446 dmaengine_submit(tx_out); in omap_des_crypt_dma()
|