Searched defs:offNext (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/r3/nt/
H A Ddirenum-r3-nt.cpp224 uint32_t const offNext = pThis->uCurData.pBoth->NextEntryOffset; local
225 if (offNext == 0)
236 AssertReturn(offNext >= cbRec, VERR_IO_GEN_FAILURE);
238 pThis->uCurData.u += offNext;
/vbox/src/VBox/Runtime/common/alloc/
H A Dheapoffset.cpp64 uint32_t /*PRTHEAPOFFSETBLOCK*/ offNext; member in struct:RTHEAPOFFSETBLOCK
124 uint32_t /*PRTHEAPOFFSETFREE*/ offNext; member in struct:RTHEAPOFFSETFREE
248 do { ASSERT_ALIGN((pBlock)->offNext); \
249 if ((pBlock)->offNext) \
251 ASSERT_L((pBlock)->offNext, (pHeapInt)->cbHeap); \
252 ASSERT_G((pBlock)->offNext, RTHEAPOFF_TO_OFF(pHeapInt, pBlock)); \
287 do { ASSERT_ALIGN((pBlock)->offNext); \
288 if ((pBlock)->offNext) \
290 ASSERT_LE((pBlock)->offNext, (pHeapInt)->offFreeTail); \
291 ASSERT_G((pBlock)->offNext, RTHEAPOFF_TO_OF
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DTMAll.cpp373 Assert(!pTimer->offNext);
398 if (!pCur->offNext)
451 Assert(!pTimer->offNext); Assert(!pTimer->offPrev);
470 Assert(!pTimer->offNext); Assert(!pTimer->offPrev);
524 int32_t offNext = ASMAtomicXchgS32(&pQueue->offSchedule, 0); local
525 Log2(("tmTimerQueueSchedule: pQueue=%p:{.enmClock=%d, offNext=%RI32, .u64Expired=%'RU64}\n", pQueue, pQueue->enmClock, offNext, pQueue->u64Expire));
526 if (!offNext)
528 PTMTIMER pNext = (PTMTIMER)((intptr_t)pQueue + offNext);
634 Assert(!pCur->offNext);
[all...]
/vbox/src/VBox/VMM/include/
H A DMMInternal.h302 uint32_t offNext; member in struct:MMHYPERCHUNK
322 uint32_t offNext; member in struct:MMHYPERCHUNKFREE
632 int32_t offNext; member in struct:MMLOOKUPHYPER
H A DTMInternal.h178 int32_t offNext; member in struct:TMTIMER
241 #define TMTIMER_GET_NEXT(pTimer) ((PTMTIMER)((pTimer)->offNext ? (intptr_t)(pTimer) + (pTimer)->offNext : 0))
245 #define TMTIMER_SET_NEXT(pTimer, pNext) ((pTimer)->offNext = (pNext) ? (intptr_t)(pNext) - (intptr_t)(pTimer) : 0)
/vbox/src/VBox/Storage/testcase/
H A DtstVDIo.cpp219 uint64_t offNext; member in union:VDIOTEST::__anon16824
2415 pIoTest->u.offNext = pIoTest->offEnd < pIoTest->offStart ? pIoTest->offStart - cbBlkSize : offStart;
2519 pIoReq->off = pIoTest->u.offNext;
2522 pIoTest->u.offNext = pIoTest->u.offNext == 0
2524 : RT_MAX(pIoTest->offEnd, pIoTest->u.offNext - pIoTest->cbBlkIo);
2528 pIoTest->u.offNext = pIoTest->u.offNext + pIoTest->cbBlkIo >= pIoTest->offEnd
2530 : RT_MIN(pIoTest->offEnd, pIoTest->u.offNext + pIoTest->cbBlkIo);
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp2210 uint32_t offNext = pModPe->cbHeaders; /* same */ local
2215 if (offEnd > offNext)
2221 offNext = (uint32_t)offEnd;
2224 uint32_t offEndOfSectionData = offNext;
/vbox/include/VBox/
H A DVBoxVideo.h317 uint32_t offNext; member in union:VBOXVHWACMD::__anon92
903 uint32_t offNext; member in union:VBVAHOSTCMD::__anon123

Completed in 107 milliseconds