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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wimax/i2400m/
H A Dtx.c313 * When calculating the tail_room, tx_in might get to be zero if
314 * i2400m->tx_in is right at the end of the buffer (really full
318 * i2400m->tx_in being zero would fail, so we treat is an a special
325 size_t tx_in; local
327 if (unlikely(i2400m->tx_in == 0))
329 tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE;
330 tail_room = I2400M_TX_BUF_SIZE - tx_in;
385 * In certain situations, tx_in would have reached on the top of TX FIFO
441 room = I2400M_TX_BUF_SIZE - (i2400m->tx_in
507 size_t tx_in = i2400m->tx_in % I2400M_TX_BUF_SIZE; local
[all...]
H A Ddebugfs.c270 fd = debugfs_create_size_t("tx_in", 0400, dentry,
271 &i2400m->tx_in);
275 "tx_in: %d\n", result);
H A Di2400m.h390 * @tx_in: FIFO index for incoming data. Note this doesn't wrap around
602 size_t tx_in, tx_out; member in struct:i2400m
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/atm/
H A Dambassador.h450 } tx_in; typedef in typeref:struct:__anon10819
452 /* handle is the handle from tx_in */
559 tx_in * start;
560 tx_in * ptr;
561 tx_in * limit;
H A Dambassador.c386 static int tx_give (amb_dev * dev, tx_in * tx) {
1061 tx_in tx;
1229 total += txs * (sizeof(tx_in) + sizeof(tx_out));
1269 tx_in * in = memory;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wan/
H A Dwanxl.c60 int tx_in, tx_out; member in struct:__anon13534
165 desc_t *desc = &get_status(port)->tx_descs[port->tx_in];
166 struct sk_buff *skb = port->tx_skbs[port->tx_in];
187 port->tx_in = (port->tx_in + 1) % TX_BUFFERS;
405 port->tx_in = port->tx_out = 0;
H A Dwanxlfw.S297 clrl tx_in(%d0)
567 movel tx_in(%d0), %d1
568 movel %d1, %d2 // D1 = D2 = tx_in BD# = desc#
570 addl tx_first_bd(%d0), %d1 // D1 = current tx_in BD address
575 // update D6, tx_in and tx_count
578 movel tx_in(%d0), %d1
584 movel %d1, tx_in(%d0)
884 tx_in: .long 0, 0, 0, 0 // transmitted label

Completed in 78 milliseconds