Home
last modified time | relevance | path

Searched refs:allocpages (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/vm/
H A Dvm_reserv.c635 u_long allocpages, maxpages, minpages; in vm_reserv_alloc_contig() local
715 allocpages = maxpages; in vm_reserv_alloc_contig()
744 allocpages = minpages; in vm_reserv_alloc_contig()
759 allocpages = minpages; in vm_reserv_alloc_contig()
773 m = vm_phys_alloc_contig(domain, allocpages, low, high, in vm_reserv_alloc_contig()
812 allocpages -= VM_LEVEL_0_NPAGES; in vm_reserv_alloc_contig()
813 } while (allocpages >= VM_LEVEL_0_NPAGES); in vm_reserv_alloc_contig()
/f-stack/freebsd/i386/i386/
H A Dpmap.c394 allocpages(u_int cnt, u_long *physfree) in allocpages() function
455 KPTphys = allocpages(NKPT, &physfree); in __CONCAT()
461 IdlePDPT = (pdpt_entry_t *)allocpages(1, &physfree); in __CONCAT()
463 IdlePTD = (pd_entry_t *)allocpages(NPGPTD, &physfree); in __CONCAT()
471 allocpages(1, &physfree); in __CONCAT()
472 proc0kstack = allocpages(TD0_KSTACK_PAGES, &physfree); in __CONCAT()
475 vm86phystk = allocpages(1, &physfree); in __CONCAT()
478 vm86paddr = vm86pa = allocpages(3, &physfree); in __CONCAT()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c1512 allocpages(vm_paddr_t *firstaddr, int n) in allocpages() function
1634 DMPDPphys = allocpages(firstaddr, ndmpdpphys); in create_pagetables()
1648 DMPDkernphys = allocpages(firstaddr, nkdmpde); in create_pagetables()
1651 DMPDphys = allocpages(firstaddr, ndmpdp - ndm1g); in create_pagetables()
1655 KPML4phys = allocpages(firstaddr, 1); in create_pagetables()
1656 KPDPphys = allocpages(firstaddr, NKPML4E); in create_pagetables()
1671 KPTphys = allocpages(firstaddr, nkpt); in create_pagetables()
1672 KPDphys = allocpages(firstaddr, nkpdpe); in create_pagetables()
1800 pcpu_phys = allocpages(firstaddr, MAXCPU); in pmap_bootstrap()