OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RX_RING_SIZE
(Results
1 - 6
of
6
) sorted by null
/external/grub/netboot/
epic100.c
15
#define
RX_RING_SIZE
2
83
static struct epic_rx_desc rx_ring[
RX_RING_SIZE
];
86
#define rx_packet ((char *)0x10000 - PKT_BUF_SZ *
RX_RING_SIZE
)
87
#define tx_packet ((char *)0x10000 - PKT_BUF_SZ *
RX_RING_SIZE
- PKT_BUF_SZ * TX_RING_SIZE)
89
static char rx_packet[PKT_BUF_SZ *
RX_RING_SIZE
];
260
for (i = 0; i <
RX_RING_SIZE
; i++) {
365
entry = cur_rx %
RX_RING_SIZE
;
w89c840.c
113
#define
RX_RING_SIZE
2
233
struct w840_rx_desc rx_ring[
RX_RING_SIZE
];
265
#define rx_packet ((char *)0x10000 - PKT_BUF_SZ *
RX_RING_SIZE
)
266
#define tx_packet ((char *)0x10000 - PKT_BUF_SZ *
RX_RING_SIZE
- PKT_BUF_SZ * TX_RING_SIZE)
268
static char rx_packet[PKT_BUF_SZ *
RX_RING_SIZE
];
403
int entry = w840private.cur_rx %
RX_RING_SIZE
;
478
entry = (++w840private.cur_rx) %
RX_RING_SIZE
;
915
for (i = 0; i <
RX_RING_SIZE
; i++) {
928
w840private.dirty_rx = (unsigned int)(i -
RX_RING_SIZE
);
fa311.c
47
#define
RX_RING_SIZE
4
108
volatile struct netdev_desc rx_ring[
RX_RING_SIZE
] __attribute__ ((aligned (4)));
119
static char rx_packet[PKT_BUF_SZ *
RX_RING_SIZE
] __attribute__ ((aligned (4)));
260
if (dev->cur_rx >=
RX_RING_SIZE
)
398
for (i = 0; i <
RX_RING_SIZE
; i++) {
406
for (i = 0; i <
RX_RING_SIZE
; i++) {
via-rhine.c
413
#define
RX_RING_SIZE
2
632
char *rx_buffs[
RX_RING_SIZE
];
683
for (i = 0; i <
RX_RING_SIZE
; i++)
1006
#define buf1 (0x10000 - (
RX_RING_SIZE
* PKT_BUF_SZ + 32))
1007
#define buf2 (buf1 - (
RX_RING_SIZE
* PKT_BUF_SZ + 32))
1011
static char buf1[
RX_RING_SIZE
* PKT_BUF_SZ + 32];
1012
static char buf2[
RX_RING_SIZE
* PKT_BUF_SZ + 32];
1048
for (i = 0; i <
RX_RING_SIZE
; i++)
1125
tp->cur_rx = tp->cur_rx %
RX_RING_SIZE
;
lance.c
49
#define
RX_RING_SIZE
(1 << (LANCE_LOG_RX_BUFFERS))
50
#define RX_RING_MOD_MASK (
RX_RING_SIZE
- 1)
85
struct lance_rx_head rx_ring[
RX_RING_SIZE
];
87
unsigned char rbuf[
RX_RING_SIZE
][ETH_FRAME_LEN+4];
264
for (i=0; i<
RX_RING_SIZE
; i++) {
tulip.c
395
#define
RX_RING_SIZE
4
396
static struct tulip_rx_desc rx_ring[
RX_RING_SIZE
] __attribute__ ((aligned(4)));
399
#define rxb ((char *)0x10000 -
RX_RING_SIZE
* BUFLEN - BUFLEN)
401
static unsigned char rxb[
RX_RING_SIZE
* BUFLEN] __attribute__ ((aligned(4)));
[
all
...]
Completed in 236 milliseconds