Searched defs:puPhys (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dalloc-r0drv-solaris.c124 * @param puPhys Where to store the physical address of the allocated
134 DECLHIDDEN(void *) rtR0SolMemAlloc(uint64_t uPhysHi, uint64_t *puPhys, size_t cb, uint64_t uAlignment, bool fContig) argument
160 if (puPhys)
161 *puPhys = (uint64_t)PageFrameNum << PAGESHIFT;
H A Dmemobj-r0drv-solaris.c215 * @param puPhys Where to store the physical address of first page. Optional,
221 static page_t **rtR0MemObjSolPagesAlloc(uint64_t *puPhys, size_t cb) argument
272 if (puPhys)
273 *puPhys = rtR0MemObjSolPagePhys(ppPages[0]);
306 * @param puPhys Where to store the physical address of the allocated
313 static page_t **rtR0MemObjSolLargePageAlloc(uint64_t *puPhys, size_t cbLargePage) argument
389 if (puPhys)
390 *puPhys = uPhys;
680 void *pvMem = rtR0SolMemAlloc(uPhysHi, NULL /* puPhys */, cb, PAGE_SIZE, false /* fContig */);

Completed in 1116 milliseconds