Searched refs:tx_out (Results 1 - 9 of 9) sorted by relevance

/linux-4.1.27/drivers/net/wan/
H A Dwanxl.c63 int tx_in, tx_out; member in struct:port
280 desc = &get_status(port)->tx_descs[port->tx_out]; wanxl_xmit()
296 port->tx_skbs[port->tx_out] = skb; wanxl_xmit()
304 port->tx_out = (port->tx_out + 1) % TX_BUFFERS; wanxl_xmit()
306 if (get_status(port)->tx_descs[port->tx_out].stat != PACKET_EMPTY) { wanxl_xmit()
408 port->tx_in = port->tx_out = 0; wanxl_open()
H A Dwanxlfw.S299 clrl tx_out(%d0)
453 movel tx_out(%d0), %d1
454 movel %d1, %d2 // D1 = D2 = tx_out BD# = desc#
464 addl tx_first_bd(%d0), %d1 // D1 = current tx_out BD addr
472 // update tx_out and tx_count
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
/linux-4.1.27/drivers/net/wimax/i2400m/
H A Dtx.c442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in - i2400m->tx_out); i2400m_tx_fifo_push()
670 i2400m->tx_out); i2400m_tx_close()
853 if (i2400m->tx_in == i2400m->tx_out) { /* Empty FIFO? */ i2400m_tx_msg_get()
855 i2400m->tx_out = 0; i2400m_tx_msg_get()
859 tx_msg = i2400m->tx_buf + i2400m->tx_out % I2400M_TX_BUF_SIZE; i2400m_tx_msg_get()
862 i2400m->tx_out % I2400M_TX_BUF_SIZE, i2400m_tx_msg_get()
864 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; i2400m_tx_msg_get()
880 i2400m->tx_out += tx_msg->size & ~I2400M_TX_SKIP; i2400m_tx_msg_get()
942 i2400m->tx_out += i2400m->tx_msg_size; i2400m_tx_msg_sent()
945 BUG_ON(i2400m->tx_out > i2400m->tx_in); i2400m_tx_msg_sent()
947 n = i2400m->tx_out / I2400M_TX_BUF_SIZE; i2400m_tx_msg_sent()
948 i2400m->tx_out %= I2400M_TX_BUF_SIZE; i2400m_tx_msg_sent()
962 * for tx_in, tx_out, tx_msg_size and tx_msg. We reset them since
990 i2400m->tx_out = 0; i2400m_tx_setup()
H A Ddebugfs.c272 fd = debugfs_create_size_t("tx_out", 0400, dentry, i2400m_debugfs_add()
273 &i2400m->tx_out); i2400m_debugfs_add()
277 "tx_out: %d\n", result); i2400m_debugfs_add()
H A Di2400m.h390 * and it is always greater than @tx_out.
392 * @tx_out: FIFO index for outgoing data
601 size_t tx_in, tx_out; member in struct:i2400m
/linux-4.1.27/drivers/atm/
H A Dambassador.h463 } tx_out; typedef in typeref:struct:__anon3383
571 tx_out * start;
572 tx_out * ptr;
573 tx_out * limit;
H A Dambassador.c450 static void tx_complete (amb_dev * dev, tx_out * tx) { tx_complete()
1522 total += txs * (sizeof(tx_in) + sizeof(tx_out)); create_queues()
1563 tx_out * out; create_queues()
/linux-4.1.27/drivers/crypto/
H A Domap-aes.c422 struct dma_async_tx_descriptor *tx_in, *tx_out; omap_aes_crypt_dma() local
474 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, out_sg_len, omap_aes_crypt_dma()
477 if (!tx_out) { omap_aes_crypt_dma()
482 tx_out->callback = omap_aes_dma_out_callback; omap_aes_crypt_dma()
483 tx_out->callback_param = dd; omap_aes_crypt_dma()
486 dmaengine_submit(tx_out); omap_aes_crypt_dma()
H A Domap-des.c406 struct dma_async_tx_descriptor *tx_in, *tx_out; omap_des_crypt_dma() local
458 tx_out = dmaengine_prep_slave_sg(dd->dma_lch_out, out_sg, out_sg_len, omap_des_crypt_dma()
461 if (!tx_out) { omap_des_crypt_dma()
466 tx_out->callback = omap_des_dma_out_callback; omap_des_crypt_dma()
467 tx_out->callback_param = dd; omap_des_crypt_dma()
470 dmaengine_submit(tx_out); omap_des_crypt_dma()

Completed in 349 milliseconds