OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:next_to_use
(Results
1 - 3
of
3
) sorted by null
/external/syslinux/gpxe/src/drivers/net/e1000/
e1000.h
118
unsigned int
next_to_use
;
member in struct:e1000_tx_ring
137
unsigned int
next_to_use
;
member in struct:e1000_rx_ring
154
((((R)->next_to_clean > (R)->
next_to_use
) ? 0 : (R)->count) + \
155
(R)->next_to_clean - (R)->
next_to_use
- 1)
/external/syslinux/gpxe/src/drivers/net/
atl1e.c
356
tx_ring->
next_to_use
= 0;
908
u16
next_to_use
= 0;
local
912
next_to_use
= tx_ring->
next_to_use
;
914
return (u16)(next_to_clean >
next_to_use
) ?
915
(next_to_clean -
next_to_use
- 1) :
916
(tx_ring->count + next_to_clean -
next_to_use
- 1);
927
u16
next_to_use
= 0;
local
929
next_to_use
= tx_ring->
next_to_use
;
[
all
...]
atl1e.h
201
u16
next_to_use
;
member in struct:atl1e_tx_ring
[
all
...]
Completed in 109 milliseconds