Home
last modified time | relevance | path

Searched refs:tx_out (Results 1 – 8 of 8) sorted by relevance

/drivers/net/wimax/i2400m/
Dtx.c442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in - i2400m->tx_out); in i2400m_tx_fifo_push()
670 i2400m->tx_out); in i2400m_tx_close()
853 if (i2400m->tx_in == i2400m->tx_out) { /* Empty FIFO? */ in i2400m_tx_msg_get()
855 i2400m->tx_out = 0; in i2400m_tx_msg_get()
859 tx_msg = i2400m->tx_buf + i2400m->tx_out % I2400M_TX_BUF_SIZE; in i2400m_tx_msg_get()
862 i2400m->tx_out % I2400M_TX_BUF_SIZE, in i2400m_tx_msg_get()
864 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; in i2400m_tx_msg_get()
880 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; in i2400m_tx_msg_get()
942 i2400m->tx_out += i2400m->tx_msg_size; in i2400m_tx_msg_sent()
945 BUG_ON(i2400m->tx_out > i2400m->tx_in); in i2400m_tx_msg_sent()
[all …]
Di2400m.h601 size_t tx_in, tx_out; member
Ddebugfs.c273 &i2400m->tx_out); in i2400m_debugfs_add()
/drivers/atm/
Dambassador.h463 } tx_out; typedef
571 tx_out * start;
572 tx_out * ptr;
573 tx_out * limit;
Dambassador.c450 static void tx_complete (amb_dev * dev, tx_out * tx) { in tx_complete()
1522 total += txs * (sizeof(tx_in) + sizeof(tx_out)); in create_queues()
1563 tx_out * out; in create_queues()
/drivers/net/wan/
Dwanxl.c63 int tx_in, tx_out; member
280 desc = &get_status(port)->tx_descs[port->tx_out]; in wanxl_xmit()
296 port->tx_skbs[port->tx_out] = skb; in wanxl_xmit()
304 port->tx_out = (port->tx_out + 1) % TX_BUFFERS; in wanxl_xmit()
306 if (get_status(port)->tx_descs[port->tx_out].stat != PACKET_EMPTY) { in wanxl_xmit()
407 port->tx_in = port->tx_out = 0; in wanxl_open()
Dwanxlfw.S299 clrl tx_out(%d0)
453 movel tx_out(%d0), %d1
473 movel tx_out(%d0), %d1
478 tx_1: movel %d1, tx_out(%d0)
886 tx_out: .long 0, 0, 0, 0 // received from host for transmission label
/drivers/crypto/
Domap-aes.c465 struct dma_async_tx_descriptor *tx_in, *tx_out; in omap_aes_crypt_dma() local
514 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, 1, in omap_aes_crypt_dma()
517 if (!tx_out) { in omap_aes_crypt_dma()
522 tx_out->callback = omap_aes_dma_out_callback; in omap_aes_crypt_dma()
523 tx_out->callback_param = dd; in omap_aes_crypt_dma()
526 dmaengine_submit(tx_out); in omap_aes_crypt_dma()