Searched refs:idxNext (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/VMM/VMMAll/
H A DREMAll.cpp108 } while (!ASMAtomicCmpXchgU32(&pVM->rem.s.idxFreeList, pFree->idxNext, idxFree));
119 uint32_t idxNext; local
122 idxNext = ASMAtomicUoReadU32(&pVM->rem.s.idxPendingList);
123 ASMAtomicWriteU32(&pFree->idxNext, idxNext);
125 } while (!ASMAtomicCmpXchgU32(&pVM->rem.s.idxPendingList, idxFree, idxNext));
220 idx = pVM->rem.s.aHandlerNotifications[idx].idxNext)
H A DPGMAllPool.cpp1288 unsigned idxNext = pPageHead->iMonitoredNext; local
1298 if (idxNext == NIL_PGMPOOL_IDX)
1301 pPageHead = &pPool->aPages[idxNext];
/vbox/src/VBox/Debugger/
H A DDBGPlugInLinux.cpp188 uint32_t idxNext; local
195 { &idxNext, sizeof(idxNext), sizeof(idxNext), "log_next_idx" },
241 if ( idxNext > cbLogBuf - sizeof(LNXPRINTKHDR)
242 || (idxNext & (cbLogAlign - 1)) != 0)
244 Log(("dbgDiggerLinuxIDmsg_QueryKernelLog: 'log_next_idx' value %#x is not valid.\n", idxNext));
270 uint32_t const cbUsed = idxFirst == idxNext ? cbLogBuf /* could be empty... */
271 : idxFirst < idxNext ? idxNext
[all...]
/vbox/src/VBox/VMM/include/
H A DREMInternal.h106 uint32_t volatile idxNext; member in struct:REMHANDLERNOTIFICATION
/vbox/src/recompiler/
H A DVBoxRecompiler.c455 pCur->idxNext = i + 1;
458 pCur->idxNext = UINT32_MAX; /* the last record. */
3047 uint32_t idxNext; local
3067 idxNext = pVM->rem.s.aHandlerNotifications[idxHead].idxNext;
3068 Assert(idxNext < RT_ELEMENTS(pVM->rem.s.aHandlerNotifications) || idxNext == UINT32_MAX);
3070 pVM->rem.s.aHandlerNotifications[idxHead].idxNext = idxRevHead;
3074 idxHead = idxNext;
3126 idxHead = pCur->idxNext;
[all...]
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h976 GEN_CHECK_OFF(REMHANDLERNOTIFICATION, idxNext);

Completed in 73 milliseconds