Home
last modified time | relevance | path

Searched refs:virt (Results 1 – 2 of 2) sorted by relevance

/sys/amd64/include/
Dpmap.h70 bool PMap_Map(AS *as, uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags);
71 bool PMap_AllocMap(AS *as, uint64_t virt, uint64_t len, uint64_t flags);
72 bool PMap_Unmap(AS *as, uint64_t virt, uint64_t pages);
76 bool PMap_SystemLMap(uint64_t phys, uint64_t virt, uint64_t lpages, uint64_t flags);
77 bool PMap_SystemMap(uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags);
78 bool PMap_SystemUnmap(uint64_t virt, uint64_t pages);
/sys/amd64/
Dpmap.c355 PMap_Map(AS *as, uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags) in PMap_Map() argument
361 uint64_t va = virt + PGSIZE * i; in PMap_Map()
423 PMap_AllocMap(AS *as, uint64_t virt, uint64_t len, uint64_t flags) in PMap_AllocMap() argument
429 ASSERT((virt & PGMASK) == 0); in PMap_AllocMap()
432 uint64_t va = virt + PGSIZE * i; in PMap_AllocMap()
480 PMap_SystemLMap(uint64_t phys, uint64_t virt, uint64_t lpages, uint64_t flags) in PMap_SystemLMap() argument
486 uint64_t va = virt + LARGE_PGSIZE * i; in PMap_SystemLMap()
514 PMap_SystemMap(uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags) in PMap_SystemMap() argument
520 uint64_t va = virt + PGSIZE * i; in PMap_SystemMap()
539 PMap_SystemUnmap(uint64_t virt, uint64_t pages) in PMap_SystemUnmap() argument