Lines Matching defs:pNonphysical

512 	struct nonphysical *pNonphysical = pLayerPointers->pMil
513 ->pNonphysical;
516 descriptor = pNonphysical->RxBufDescQRead->descriptor;
518 pNonphysical->RxBufDescQRead->descriptor -
519 pNonphysical->RxBufDescQStart->descriptor,
572 bcopy((long *)*(pNonphysical->RxBufDescQRead->USpaceMap),
591 pNonphysical->RxBufDescQRead->descriptor++;
592 pNonphysical->RxBufDescQRead->USpaceMap++;
593 if (pNonphysical->RxBufDescQRead->descriptor >
594 pNonphysical->RxBufDescQEnd->descriptor) {
595 pNonphysical->RxBufDescQRead->descriptor =
596 pNonphysical->RxBufDescQStart->descriptor;
597 pNonphysical->RxBufDescQRead->USpaceMap =
598 pNonphysical->RxBufDescQStart->USpaceMap;
862 pMil->pNonphysical->TxDescQRead = pMil->Tx_desc;
863 pMil->pNonphysical->TxDescQWrite = pMil->Tx_desc;
864 pMil->pNonphysical->TxDescQStart = pMil->Tx_desc;
865 pMil->pNonphysical->TxDescQEnd = &(pMil->Tx_desc[TX_RING_SIZE -1]);
874 pMil->pNonphysical->TxDescQWrite->Tx_RES0 = 0x0f;
875 pMil->pNonphysical->TxDescQWrite->Tx_OWN = 0;
876 pMil->pNonphysical->TxDescQWrite++;
878 pMil->pNonphysical->TxDescQWrite = pMil->pNonphysical->TxDescQStart;
1142 struct nonphysical *pNonphysical;
1145 pNonphysical = pLayerPointers->pMil->pNonphysical;
1146 while (pNonphysical->TxDescQRead->Tx_OWN == 0 &&
1147 pNonphysical->TxDescQRead != pNonphysical->TxDescQWrite) {
1150 pNonphysical->TxDescQRead++;
1151 if (pNonphysical->TxDescQRead > pNonphysical->TxDescQEnd) {
1152 pNonphysical->TxDescQRead = pNonphysical->TxDescQStart;
1170 struct nonphysical *pNonphysical;
1173 pNonphysical = pLayerPointers->pMil->pNonphysical;
1183 if (((pNonphysical->TxDescQWrite + 1 >
1184 pNonphysical->TxDescQEnd) ? pNonphysical->TxDescQStart :
1185 (pNonphysical->TxDescQWrite + 1)) ==
1186 pNonphysical->TxDescQRead)
1194 pNonphysical->TxDescQWrite->Tx_BCNT = (uint16_t)pLayerPointers
1198 pNonphysical->TxDescQWrite->Tx_Base_Addr = (unsigned int)
1201 pNonphysical->TxDescQWrite->Tx_SOP = 1;
1202 pNonphysical->TxDescQWrite->Tx_EOP = 1;
1203 pNonphysical->TxDescQWrite->Tx_ADD_FCS = 1;
1204 pNonphysical->TxDescQWrite->Tx_LTINT = 1;
1205 pNonphysical->TxDescQWrite->Tx_USPACE = 0;
1206 pNonphysical->TxDescQWrite->Tx_OWN = 1;
1208 pNonphysical->TxDescQWrite++;
1209 if (pNonphysical->TxDescQWrite > pNonphysical->TxDescQEnd) {
1210 pNonphysical->TxDescQWrite = pNonphysical->TxDescQStart;
1425 struct tx_desc *pTx_desc = adapter->pMil->pNonphysical->TxDescQStart;