Lines Matching refs:rx_ptr

1202   RxFD            *rx_ptr;  in E100bReceive()  local
1226 rx_ptr = &AdapterInfo->rx_ring[AdapterInfo->cur_rx_ind]; in E100bReceive()
1231 while ((status = rx_ptr->cb_header.status) & RX_COMPLETE) { in E100bReceive()
1237 if (rx_ptr->forwarded) { in E100bReceive()
1261 pkt_len = (UINT16) (rx_ptr->ActualCount & 0x3fff); in E100bReceive()
1270 CopyMem ((INT8 *) (UINTN) rx_cpbptr->BufferAddr, (INT8 *) &rx_ptr->RFDBuffer, Tmp_len); in E100bReceive()
1272 hdr_ptr = (EtherHeader *) &rx_ptr->RFDBuffer; in E100bReceive()
1321 rx_ptr->forwarded = TRUE; in E100bReceive()
1341 rx_ptr = &AdapterInfo->rx_ring[AdapterInfo->cur_rx_ind]; in E100bReceive()
1655 RxFD *rx_ptr; in SetupReceiveQueues() local
1660 rx_ptr = (&AdapterInfo->rx_ring[0]); in SetupReceiveQueues()
1663 rx_ptr[Index].cb_header.status = 0; in SetupReceiveQueues()
1664 rx_ptr[Index].cb_header.command = 0; in SetupReceiveQueues()
1665 rx_ptr[Index].RFDSize = RX_BUFFER_SIZE; in SetupReceiveQueues()
1666 rx_ptr[Index].ActualCount = 0; in SetupReceiveQueues()
1670 rx_ptr[Index].rx_buf_addr = (UINT32) (-1); in SetupReceiveQueues()
1675 rx_ptr[Index].forwarded = FALSE; in SetupReceiveQueues()
1681rx_ptr[Index].cb_header.link = (UINT32) AdapterInfo->rx_phy_addr + ((Index + 1) * sizeof (RxFD)); in SetupReceiveQueues()
1712 RxFD *rx_ptr; in Recycle_RFD() local
1719 rx_ptr = &AdapterInfo->rx_ring[rx_index]; in Recycle_RFD()
1724 rx_ptr->cb_header.command = 0xc000; in Recycle_RFD()
1725 rx_ptr->cb_header.status = 0; in Recycle_RFD()
1726 rx_ptr->ActualCount = 0; in Recycle_RFD()
1727 rx_ptr->forwarded = FALSE; in Recycle_RFD()
1728 AdapterInfo->RFDTailPtr = rx_ptr; in Recycle_RFD()