Lines Matching refs:RXD
199 static void SetupRing(SK_AC*, void*, uintptr_t, RXD**, RXD**, RXD**, int*, SK_BOOL);
1130 RxDescrSize = (((sizeof(RXD) - 1) / DESCR_ALIGN) + 1) * DESCR_ALIGN; in BoardInitMem()
1140 (RXD**)&pAC->TxPort[i][0].pTxdRingHead, in BoardInitMem()
1141 (RXD**)&pAC->TxPort[i][0].pTxdRingTail, in BoardInitMem()
1142 (RXD**)&pAC->TxPort[i][0].pTxdRingPrev, in BoardInitMem()
1173 RXD **ppRingHead, /* address where the head should be written */ in SetupRing()
1174 RXD **ppRingTail, /* address where the tail should be written */ in SetupRing()
1175 RXD **ppRingPrev, /* address where the tail should be written */ in SetupRing()
1182 RXD *pDescr; /* pointer to a descriptor (receive or transmit) */ in SetupRing()
1183 RXD *pNextDescr; /* pointer to the next descriptor */ in SetupRing()
1184 RXD *pPrevDescr; /* pointer to the previous descriptor */ in SetupRing()
1192 DescrSize = (((sizeof(RXD) - 1) / DESCR_ALIGN) + 1) * in SetupRing()
1201 pDescr = (RXD*) pMemArea; in SetupRing()
1203 pNextDescr = (RXD*) (((char*)pDescr) + DescrSize); in SetupRing()
1214 pNextDescr = (RXD*) (((char*)pDescr) + DescrSize); in SetupRing()
1217 pPrevDescr->pNextRxd = (RXD*) pMemArea; in SetupRing()
1219 pDescr = (RXD*) pMemArea; in SetupRing()
1220 *ppRingHead = (RXD*) pMemArea; in SetupRing()
2306 RXD *pRxd; /* the rxd to fill */ in FillRxDescriptor()
2363 RXD *pRxd; /* the rxd to fill */ in ReQueueRxBuffer()
2398 RXD *pRxd; /* pointer to receive descriptors */
2822 RXD *pRxd; /* pointer to the current descriptor */