Searched refs:puPhys (Results 1 - 3 of 3) sorted by relevance
/vbox/src/VBox/Runtime/r0drv/solaris/ |
H A D | alloc-r0drv-solaris.c | 124 * @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 D | the-solaris-kernel.h | 72 DECLHIDDEN(void *) rtR0SolMemAlloc(uint64_t cbPhysHi, uint64_t *puPhys, size_t cb, uint64_t cbAlign, bool fContig);
|
H A D | memobj-r0drv-solaris.c | 215 * @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 1118 milliseconds