Searched refs:RT_ALIGN_P (Results 1 - 14 of 14) sorted by relevance
/vbox/src/VBox/HostDrivers/Support/testcase/ |
H A D | tstPin.cpp | 86 aPinnings[i].pvAligned = RT_ALIGN_P(aPinnings[i].pv, PAGE_SIZE); 175 void *pvAligned = RT_ALIGN_P(pv, PAGE_SIZE);
|
/vbox/src/VBox/Runtime/common/alloc/ |
H A D | memcache.cpp | 316 pPage->pbObjects = pb; Assert(RT_ALIGN_P(pb, pThis->cbAlignment) == pb); 557 Assert(RT_ALIGN_P(pvObj, pThis->cbAlignment) == pvObj);
|
H A D | heapoffset.cpp | 658 Assert(RT_ALIGN_P(pv, RTHEAPOFFSET_ALIGNMENT) == pv); 852 AssertReturn(RT_ALIGN_P(pv, RTHEAPOFFSET_ALIGNMENT) == pv, 0);
|
H A D | heapsimple.cpp | 650 Assert(RT_ALIGN_P(pv, RTHEAPSIMPLE_ALIGNMENT) == pv); 844 AssertReturn(RT_ALIGN_P(pv, RTHEAPSIMPLE_ALIGNMENT) == pv, 0);
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTHeapSimple.cpp | 110 RTTESTI_CHECK_MSG(RT_ALIGN_P(s_aOps[i].pvAlloc, (s_aOps[i].uAlignment ? s_aOps[i].uAlignment : 8)) == s_aOps[i].pvAlloc,
|
H A D | tstRTHeapOffset.cpp | 113 RTTESTI_CHECK_MSG(RT_ALIGN_P(s_aOps[i].pvAlloc, (s_aOps[i].uAlignment ? s_aOps[i].uAlignment : 8)) == s_aOps[i].pvAlloc,
|
H A D | tstRTMemCache.cpp | 87 RTTESTI_CHECK_RETV(RT_ALIGN_P(pv, 32) == pv);
|
/vbox/src/VBox/VMM/testcase/ |
H A D | tstMMHyperHeap.cpp | 156 if (RT_ALIGN_P(aOps[i].pvAlloc, (aOps[i].uAlignment ? aOps[i].uAlignment : 8)) != aOps[i].pvAlloc)
|
/vbox/src/VBox/VMM/VMMAll/ |
H A D | MMAllHyper.cpp | 662 AssertMsg(RT_ALIGN_P(pvRet, PAGE_SIZE) == pvRet, ("pvRet=%p cb=%#x pFree=%p pFree->cb=%#x\n", pvRet, cb, pFree, pFree->cb)); 791 AssertMsgReturn(RT_ALIGN_P(pv, MMHYPER_HEAP_ALIGN_MIN) == pv, 819 AssertMsgReturn( RT_ALIGN_P(pStat, MMHYPER_HEAP_ALIGN_MIN) == (void *)pStat
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | PDMCritSect.cpp | 338 Assert(RT_ALIGN_P(pCritSect, sizeof(uintptr_t)) == pCritSect); 368 Assert(RT_ALIGN_P(pCritSect, sizeof(uintptr_t)) == pCritSect);
|
H A D | MMHyper.cpp | 426 AssertReturn(RT_ALIGN_P(pvR3, PAGE_SIZE) == pvR3, VERR_INVALID_PARAMETER);
|
/vbox/src/VBox/HostDrivers/Support/ |
H A D | SUPLib.cpp | 954 AssertMsg(RT_ALIGN_P(pvStart, PAGE_SIZE) == pvStart, ("pvStart (%p) must be page aligned\n", pvStart)); 1016 AssertMsg(RT_ALIGN_P(pvStart, PAGE_SIZE) == pvStart, ("pvStart (%p) must be page aligned\n", pvStart));
|
H A D | SUPDrv.cpp | 4429 pImage->pvImage = RT_ALIGN_P(pImage->pvImageAlloc, 32);
|
/vbox/include/iprt/ |
H A D | cdefs.h | 1490 /** @def RT_ALIGN_P 1495 #define RT_ALIGN_P(pv, uAlignment) RT_ALIGN_PT(pv, uAlignment, void *) macro
|
Completed in 646 milliseconds