Searched defs:pPhys (Results 1 - 9 of 9) 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/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/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/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/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/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...]
/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);

Completed in 56 milliseconds