Searched refs:_pktRxBuf (Results 1 – 3 of 3) sorted by relevance
/external/libpcap/msdos/ |
D | pkt_rx0.asm | 9 PUBLIC _pktDrop, _pktRxBuf, _pktTxBuf, _pktTemp 55 _rxOutOfs dw offset _pktRxBuf ; ring buffer offsets 56 _rxInOfs dw offset _pktRxBuf ; into _pktRxBuf 60 _pktRxBuf RX_ELEMENT NUM_RX_BUF dup (<>) ; RX structures label 97 add ax, SIZE RX_ELEMENT ;; point to next _pktRxBuf buffer 100 lea ax, _pktRxBuf ;; yes, point to 1st buffer 121 ; A test for equality is done by putting CX in _pktRxBuf [n].firstCount 122 ; and _pktRxBuf[n].secondCount, and CL on first call in 123 ; _pktRxBuf[n].rxBuffer[CX]. These values are checked in "PktReceive" 151 ENQUEUE ; ES:DI -> _pktRxBuf[n] [all …]
|
D | pkt_rx1.s | 30 _rxOutOfs dw offset _pktRxBuf ; ring buffer offsets 31 _rxInOfs dw offset _pktRxBuf ; into _pktRxBuf 35 _pktRxBuf resb (RX_SIZE*NUM_RX_BUF) ; RX structures label 76 ; A test for equality is done by putting CX in _pktRxBuf [n].firstCount 77 ; and _pktRxBuf[n].secondCount, and CL on first call in 78 ; _pktRxBuf[n].rxBuffer[CX]. These values are checked in "PktReceive" 107 mov ax, offset _pktRxBuf 111 mov di, [_rxInOfs] ; ES:DI -> _pktRxBuf[n] 116 add di, 6 ; ES:DI -> _pktRxBuf[n].destinAdr 131 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
|
D | pktdrvr.c | 87 RX_ELEMENT _pktRxBuf[NUM_RX_BUF]; member 105 #define FIRST_RX_BUF offsetof (PktRealStub,_pktRxBuf [0]) 106 #define LAST_RX_BUF offsetof (PktRealStub,_pktRxBuf [NUM_RX_BUF-1])
|