Lines Matching defs:va_next

2226 	vm_offset_t va, va_next;
2234 for (; sva < eva; sva = va_next) {
2237 va_next = (sva + L1_PAGE_SIZE) & ~L1_PAGE_MASK;
2238 if (va_next < sva)
2239 va_next = eva;
2244 va_next = (sva + L2_PAGE_SIZE) & ~L2_PAGE_MASK;
2245 if (va_next < sva)
2246 va_next = eva;
2249 va_next = (sva + L3_PAGE_SIZE) & ~L3_PAGE_MASK;
2250 if (va_next < sva)
2251 va_next = eva;
2274 * within the address range [sva, min(va_next, eva))
2281 if (va > va_next)
2282 va = va_next;
2296 if (va_next > eva)
2297 va_next = eva;
2298 va = va_next;
2299 for (pte = pmap_l3e_to_pte(l3e, sva); sva != va_next;
2323 if (va != va_next) {
2325 va = va_next;
2328 if (va != va_next)
2523 vm_offset_t va_next;
2543 for (addr = src_addr; addr < end_addr; addr = va_next) {
2551 va_next = (addr + L1_PAGE_SIZE) & ~L1_PAGE_MASK;
2552 if (va_next < addr)
2553 va_next = end_addr;
2559 va_next = (addr + L2_PAGE_SIZE) & ~L2_PAGE_MASK;
2560 if (va_next < addr)
2561 va_next = end_addr;
2565 va_next = (addr + L3_PAGE_SIZE) & ~L3_PAGE_MASK;
2566 if (va_next < addr)
2567 va_next = end_addr;
2601 if (va_next > end_addr)
2602 va_next = end_addr;
2607 while (addr < va_next) {
4541 vm_offset_t va_next;
4569 for (; sva < eva; sva = va_next) {
4572 va_next = (sva + L1_PAGE_SIZE) & ~L1_PAGE_MASK;
4573 if (va_next < sva)
4574 va_next = eva;
4580 va_next = (sva + L2_PAGE_SIZE) & ~L2_PAGE_MASK;
4581 if (va_next < sva)
4582 va_next = eva;
4586 va_next = (sva + L3_PAGE_SIZE) & ~L3_PAGE_MASK;
4587 if (va_next < sva)
4588 va_next = eva;
4607 if (sva + L3_PAGE_SIZE == va_next && eva >= va_next) {
4619 if (va_next > eva)
4620 va_next = eva;
4622 for (pte = pmap_l3e_to_pte(l3e, sva); sva != va_next; pte++,
5220 vm_offset_t va_next;
5258 for (; sva < eva; sva = va_next) {
5263 va_next = (sva + L1_PAGE_SIZE) & ~L1_PAGE_MASK;
5264 if (va_next < sva)
5265 va_next = eva;
5271 va_next = (sva + L2_PAGE_SIZE) & ~L2_PAGE_MASK;
5272 if (va_next < sva)
5273 va_next = eva;
5280 va_next = (sva + L3_PAGE_SIZE) & ~L3_PAGE_MASK;
5281 if (va_next < sva)
5282 va_next = eva;
5301 if (sva + L3_PAGE_SIZE == va_next && eva >= va_next) {
5318 if (va_next > eva)
5319 va_next = eva;
5321 if (pmap_remove_ptes(pmap, sva, va_next, l3e, &free, &lock))
5712 vm_offset_t va_next;
5720 for (; sva < eva; sva = va_next) {
5723 va_next = (sva + L1_PAGE_SIZE) & ~L1_PAGE_MASK;
5724 if (va_next < sva)
5725 va_next = eva;
5730 va_next = (sva + L2_PAGE_SIZE) & ~L2_PAGE_MASK;
5731 if (va_next < sva)
5732 va_next = eva;
5735 va_next = (sva + L3_PAGE_SIZE) & ~L3_PAGE_MASK;
5736 if (va_next < sva)
5737 va_next = eva;
5750 if (sva + L3_PAGE_SIZE == va_next && eva >= va_next) {
5758 if (va_next > eva)
5759 va_next = eva;
5760 for (pte = pmap_l3e_to_pte(l3e, sva); sva != va_next; pte++,