Searched refs:m_start (Results 51 - 52 of 52) sorted by relevance

123

/freebsd-12-stable/sys/vm/
H A Dvm_page.c2299 * Scan vm_page_array[] between the specified entries "m_start" and
2310 * "npages" must be greater than zero. "m_start" and "m_end" must not
2315 vm_page_scan_contig(u_long npages, vm_page_t m_start, vm_page_t m_end, argument
2333 for (m = m_start; m < m_end && run_len < npages; m += m_inc) {
/freebsd-12-stable/sys/amd64/amd64/
H A Dpmap.c6180 * The sequence begins with the given page m_start. This page is
6183 * amount as the page is offset from m_start within the object. The
6185 * m_start that can be mapped at a virtual address less than the given
6188 * corresponding offset from m_start are mapped.
6192 vm_page_t m_start, vm_prot_t prot)
6199 VM_OBJECT_ASSERT_LOCKED(m_start->object);
6203 m = m_start;
6206 while (m != NULL && (diff = m->pindex - m_start->pindex) < psize) {
6191 pmap_enter_object(pmap_t pmap, vm_offset_t start, vm_offset_t end, vm_page_t m_start, vm_prot_t prot) argument

Completed in 187 milliseconds

123