Searched defs:iRxDCurrent (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Network/
H A DDevE1000.cpp1126 uint32_t iRxDCurrent; member in struct:E1kState_st
1643 pThis->iRxDCurrent = pThis->nRxDFetched = 0;
2023 return pThis->nRxDFetched > pThis->iRxDCurrent ?
2024 pThis->nRxDFetched - pThis->iRxDCurrent : 0;
2029 return pThis->iRxDCurrent >= pThis->nRxDFetched;
2101 * Note that we cannot advance the cache pointer (iRxDCurrent) yet as it will
2112 if (pThis->iRxDCurrent < pThis->nRxDFetched)
2113 return &pThis->aRxDescriptors[pThis->iRxDCurrent];
2115 pThis->iRxDCurrent = pThis->nRxDFetched = 0;
2117 return &pThis->aRxDescriptors[pThis->iRxDCurrent];
[all...]

Completed in 3879 milliseconds