OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUM_RX_DESC
(Results
1 - 4
of
4
) sorted by null
/external/grub/netboot/
natsemi.c
73
#define
NUM_RX_DESC
4 /* Number of Rx descriptor registers. */
209
static BufferDesc rxd[
NUM_RX_DESC
] __attribute__ ((aligned(4)));
213
#define rxb ((char *)0x10000 -
NUM_RX_DESC
*RX_BUF_SIZE - TX_BUF_SIZE)
216
static unsigned char rxb[
NUM_RX_DESC
* RX_BUF_SIZE] __attribute__ ((aligned(4)));
538
for (i = 0; i <
NUM_RX_DESC
; i++) {
539
rxd[i].link = (i+1 <
NUM_RX_DESC
) ? (u32) &rxd[i+1] : (u32) &rxd[0];
710
if (++cur_rx ==
NUM_RX_DESC
)
sis900.c
61
static BufferDesc rxd[
NUM_RX_DESC
];
65
#define rxb ((char *)0x10000 -
NUM_RX_DESC
*RX_BUF_SIZE - TX_BUF_SIZE)
68
static unsigned char rxb[
NUM_RX_DESC
* RX_BUF_SIZE];
628
for (i = 0; i <
NUM_RX_DESC
; i++) {
629
rxd[i].link = (i+1 <
NUM_RX_DESC
) ? (u32) &rxd[i+1] : (u32) &rxd[0];
1023
if (++cur_rx ==
NUM_RX_DESC
)
depca.c
364
** total_memory =
NUM_RX_DESC
*(8+RX_BUFF_SZ) + NUM_TX_DESC*(8+TX_BUFF_SZ)
366
#define
NUM_RX_DESC
2 /* Number of RX descriptors */
451
char *rx_memcpy[
NUM_RX_DESC
];
557
mem_start += (sizeof(struct depca_rx_desc) *
NUM_RX_DESC
);
566
lp.rxRingMask =
NUM_RX_DESC
- 1;
sis900.h
347
#define
NUM_RX_DESC
4 /* Number of Rx descriptor registers. */
Completed in 48 milliseconds