Lines Matching refs:flind

261 	int dom, error, flind, oind, pind;  in sysctl_vm_phys_free()  local
269 for (flind = 0; flind < vm_nfreelists; flind++) { in sysctl_vm_phys_free()
272 "\n ", flind); in sysctl_vm_phys_free()
283 fl = vm_phys_free_queues[dom][flind][pind]; in sysctl_vm_phys_free()
493 int dom, flind, freelist, oind, pind, segind; in vm_phys_init() local
557 flind = vm_freelist_to_flind[VM_FREELIST_LOWMEM]; in vm_phys_init()
558 KASSERT(flind >= 0, in vm_phys_init()
564 flind = vm_freelist_to_flind[VM_FREELIST_DMA32]; in vm_phys_init()
565 KASSERT(flind >= 0, in vm_phys_init()
570 flind = vm_freelist_to_flind[VM_FREELIST_DEFAULT]; in vm_phys_init()
571 KASSERT(flind >= 0, in vm_phys_init()
574 seg->free_queues = &vm_phys_free_queues[seg->domain][flind]; in vm_phys_init()
604 for (flind = 0; flind < vm_nfreelists; flind++) { in vm_phys_init()
606 fl = vm_phys_free_queues[dom][flind][pind]; in vm_phys_init()
731 int avail, end, flind, freelist, i, need, oind, pind; in vm_phys_alloc_npages() local
742 flind = vm_freelist_to_flind[freelist]; in vm_phys_alloc_npages()
743 if (flind < 0) in vm_phys_alloc_npages()
745 fl = vm_phys_free_queues[domain][flind][pool]; in vm_phys_alloc_npages()
767 alt = vm_phys_free_queues[domain][flind][pind]; in vm_phys_alloc_npages()
826 int oind, pind, flind; in vm_phys_alloc_freelist_pages() local
839 flind = vm_freelist_to_flind[freelist]; in vm_phys_alloc_freelist_pages()
841 if (flind < 0) in vm_phys_alloc_freelist_pages()
845 fl = &vm_phys_free_queues[domain][flind][pool][0]; in vm_phys_alloc_freelist_pages()
864 alt = &vm_phys_free_queues[domain][flind][pind][0]; in vm_phys_alloc_freelist_pages()
1741 int flind, oind, pind, dom; in DB_SHOW_COMMAND() local
1745 for (flind = 0; flind < vm_nfreelists; flind++) { in DB_SHOW_COMMAND()
1748 "\n ", flind); in DB_SHOW_COMMAND()
1759 fl = vm_phys_free_queues[dom][flind][pind]; in DB_SHOW_COMMAND()