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

/vbox/src/VBox/Runtime/r3/
H A Dpoll.cpp797 uint32_t iPrev = UINT32_MAX; local
808 iPrev = j;
845 if (iPrev != UINT32_MAX)
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp1988 uint16_t iPrev = pPool->aiHash[iHash]; local
1991 const int16_t i = pPool->aPages[iPrev].iNext;
1994 pPool->aPages[iPrev].iNext = pPage->iNext;
2002 iPrev = i;
3001 uint16_t iPrev = NIL_PGMPOOL_USER_INDEX;
3007 if (iPrev != NIL_PGMPOOL_USER_INDEX)
3008 paUsers[iPrev].iNext = paUsers[i].iNext;
3017 iPrev = i;
/vbox/src/VBox/VMM/VMMR0/
H A DGVMMR0.cpp1212 uint16_t iPrev = pGVMM->iUsedHead; local
1214 while (iPrev)
1216 if (RT_UNLIKELY(iPrev >= RT_ELEMENTS(pGVMM->aHandles)))
1218 SUPR0Printf("GVM: used list index %d is out of range!\n", iPrev);
1225 iPrev = 0;
1229 if (pGVMM->aHandles[iPrev].iNext == iHandle)
1231 iPrev = pGVMM->aHandles[iPrev].iNext;
1233 if (!iPrev)
1241 Assert(pGVMM->aHandles[iPrev]
[all...]

Completed in 61 milliseconds