Searched refs:phys (Results 1 – 2 of 2) sorted by relevance
| /sys/amd64/include/ |
| D | pmap.h | 70 bool PMap_Map(AS *as, uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags); 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);
|
| /sys/amd64/ |
| D | pmap.c | 355 PMap_Map(AS *as, uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags) in PMap_Map() argument 368 *entry = (phys + PGSIZE * i) | PTE_P | PTE_W | PTE_U | flags; in PMap_Map() 480 PMap_SystemLMap(uint64_t phys, uint64_t virt, uint64_t lpages, uint64_t flags) in PMap_SystemLMap() argument 493 *entry = (phys + LARGE_PGSIZE * i) | PTE_P | PTE_W | PTE_PS | flags; in PMap_SystemLMap() 514 PMap_SystemMap(uint64_t phys, uint64_t virt, uint64_t pages, uint64_t flags) in PMap_SystemMap() argument 527 *entry = (phys + PGSIZE * i) | PTE_P | PTE_W | flags; in PMap_SystemMap()
|