Searched defs:tx_in (Results 1 - 7 of 7) sorted by relevance

/drivers/net/wimax/i2400m/
H A Dtx.c314 * When calculating the tail_room, tx_in might get to be zero if
315 * i2400m->tx_in is right at the end of the buffer (really full
319 * i2400m->tx_in being zero would fail, so we treat is an a special
326 size_t tx_in; local
328 if (unlikely(i2400m->tx_in == 0))
330 tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE;
331 tail_room = I2400M_TX_BUF_SIZE - tx_in;
386 * In certain situations, tx_in would have reached on the top of TX FIFO
442 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in
508 size_t tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE; local
[all...]
H A Di2400m.h389 * @tx_in: FIFO index for incoming data. Note this doesn't wrap around
601 size_t tx_in, tx_out; member in struct:i2400m
/drivers/net/wan/
H A Dwanxl.c63 int tx_in, tx_out; member in struct:port
167 desc_t *desc = &get_status(port)->tx_descs[port->tx_in];
168 struct sk_buff *skb = port->tx_skbs[port->tx_in];
189 port->tx_in = (port->tx_in + 1) % TX_BUFFERS;
408 port->tx_in = port->tx_out = 0;
H A Dwanxlfw.S298 clrl tx_in(%d0)
568 movel tx_in(%d0), %d1
569 movel %d1, %d2 // D1 = D2 = tx_in BD# = desc#
571 addl tx_first_bd(%d0), %d1 // D1 = current tx_in BD address
576 // update D6, tx_in and tx_count
579 movel tx_in(%d0), %d1
585 movel %d1, tx_in(%d0)
885 tx_in: .long 0, 0, 0, 0 // transmitted label
/drivers/crypto/
H A Domap-aes.c422 struct dma_async_tx_descriptor *tx_in, *tx_out; local
455 tx_in = dmaengine_prep_slave_sg(dd->dma_lch_in, in_sg, in_sg_len,
458 if (!tx_in) {
464 tx_in->callback_param = dd;
485 dmaengine_submit(tx_in);
H A Domap-des.c406 struct dma_async_tx_descriptor *tx_in, *tx_out; local
439 tx_in = dmaengine_prep_slave_sg(dd->dma_lch_in, in_sg, in_sg_len,
442 if (!tx_in) {
448 tx_in->callback_param = dd;
469 dmaengine_submit(tx_in);
/drivers/atm/
H A Dambassador.h457 } tx_in; typedef in typeref:struct:__anon114
459 /* handle is the handle from tx_in */
566 tx_in * start;
567 tx_in * ptr;
568 tx_in * limit;

Completed in 158 milliseconds