Searched refs:uAlignment (Results 26 - 28 of 28) sorted by relevance

12

/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest.cpp176 uint32_t uAlignment = _4M; local
178 rc = RTR0MemObjReserveKernel(&hObj, (void *)-1, RT_ALIGN_32(cbHypervisor, _4M), uAlignment);
181 uAlignment = PAGE_SIZE;
182 rc = RTR0MemObjReserveKernel(&hObj, (void *)-1, RT_ALIGN_32(cbHypervisor, _4M) + _4M, uAlignment);
198 uAlignment = _4M;
199 rc = RTR0MemObjMapKernel(&hObj, hFictive, (void *)-1, uAlignment, RTMEM_PROT_READ | RTMEM_PROT_WRITE);
202 uAlignment = PAGE_SIZE;
203 rc = RTR0MemObjMapKernel(&hObj, hFictive, (void *)-1, uAlignment, RTMEM_PROT_READ | RTMEM_PROT_WRITE);
208 LogRel(("VBoxGuest: Failed to reserve memory for the hypervisor: rc=%Rrc (cbHypervisor=%#x uAlignment=%#x iTry=%u)\n",
209 rc, cbHypervisor, uAlignment, iTr
[all...]
/vbox/src/VBox/Runtime/common/alloc/
H A Dheapsimple.cpp276 static PRTHEAPSIMPLEBLOCK rtHeapSimpleAllocBlock(PRTHEAPSIMPLEINTERNAL pHeapInt, size_t cb, size_t uAlignment);
474 * @param uAlignment The alignment specifications for the allocated block.
476 static PRTHEAPSIMPLEBLOCK rtHeapSimpleAllocBlock(PRTHEAPSIMPLEINTERNAL pHeapInt, size_t cb, size_t uAlignment) argument
500 offAlign = (uintptr_t)(&pFree->Core + 1) & (uAlignment - 1);
506 offAlign = uAlignment - offAlign;
/vbox/src/VBox/VMM/include/
H A DHMInternal.h513 uint32_t uAlignment; member in struct:VMCSCACHE::__anon16896
520 uint32_t uAlignment; member in struct:VMCSCACHE::__anon16897

Completed in 94 milliseconds

12