Searched refs:pPhys (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dalloc-r0drv-haiku.c76 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) RT_NO_THROW
81 AssertPtr(pPhys); variable
98 *pPhys = physMap[0].address;
/vbox/src/VBox/Runtime/r0drv/nt/
H A Dalloc-r0drv-nt.cpp76 * @param pPhys Where to store the physical address.
80 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
85 Assert(VALID_PTR(pPhys));
104 *pPhys = (RTCCPHYS)PhysAddr.LowPart;
/vbox/src/VBox/Runtime/r0drv/os2/
H A Dalloc-r0drv-os2.cpp73 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
78 AssertPtr(pPhys);
92 *pPhys = (uintptr_t)PhysAddr;
/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dalloc-r0drv-freebsd.c146 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
153 AssertPtr(pPhys);
169 *pPhys = vtophys(pv);
170 Assert(!(*pPhys & PAGE_OFFSET_MASK));
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dalloc-r0drv-darwin.cpp125 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
130 AssertPtr(pPhys);
147 *pPhys = PhysAddr;
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dalloc-r0drv-solaris.c180 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
182 AssertPtrReturn(pPhys, NULL);
196 *pPhys = uPhys;
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPhys.cpp2109 PPGMPHYSHANDLER pPhys = NULL; local
2115 pPhys = pgmHandlerPhysicalLookup(pVM, GCPhys);
2116 AssertReleaseMsg(pPhys, ("GCPhys=%RGp cb=%#x\n", GCPhys, cb));
2117 Assert(GCPhys >= pPhys->Core.Key && GCPhys <= pPhys->Core.KeyLast);
2118 Assert((pPhys->Core.Key & PAGE_OFFSET_MASK) == 0);
2119 Assert((pPhys->Core.KeyLast & PAGE_OFFSET_MASK) == PAGE_OFFSET_MASK);
2120 Assert(pPhys->CTX_SUFF(pfnHandler));
2122 PFNPGMR3PHYSHANDLER pfnHandler = pPhys->CTX_SUFF(pfnHandler);
2123 void *pvUser = pPhys
2502 PPGMPHYSHANDLER pPhys = NULL; local
[all...]
H A DPGMAllHandler.cpp1704 PPGMPHYSHANDLER pPhys = (PPGMPHYSHANDLER)RTAvlroGCPhysRangeGet(&pPGM->CTX_SUFF(pTrees)->PhysHandlers, State.GCPhys);
1705 if (!pPhys)
1707 pPhys = (PPGMPHYSHANDLER)RTAvlroGCPhysGetBestFit(&pPGM->CTX_SUFF(pTrees)->PhysHandlers, State.GCPhys, true);
1708 if ( pPhys
1709 && pPhys->Core.Key > (State.GCPhys + PAGE_SIZE - 1))
1710 pPhys = NULL;
1711 Assert(!pPhys || pPhys->Core.Key >= State.GCPhys);
1713 if (pPhys)
1715 unsigned uState = pgmHandlerPhysicalCalcState(pPhys);
[all...]
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dalloc-r0drv-linux.c377 * @param pPhys Where to store the physical address.
381 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
390 Assert(VALID_PTR(pPhys));
436 *pPhys = page_to_phys(paPages);
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-haiku-stubs.c93 RTR0DECL(void*) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) argument
95 return g_VBoxGuest->_RTMemContAlloc(pPhys, cb);
H A DVBoxGuest-haiku.h115 void* (*_RTMemContAlloc)(PRTCCPHYS pPhys, size_t cb);
/vbox/include/iprt/
H A Dmem.h515 * @param pPhys Where to store the physical address.
519 RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb) RT_NO_THROW;

Completed in 316 milliseconds