Lines Matching defs:next
794 unsigned long next;
801 next = pmd_addr_end(addr, end);
804 * Try a section mapping - addr, next and phys must all be
808 ((addr | next | phys) & ~SECTION_MASK) == 0) {
809 __map_init_section(pmd, addr, next, phys, type, ng);
811 alloc_init_pte(pmd, addr, next,
815 phys += next - addr;
817 } while (pmd++, addr = next, addr != end);
826 unsigned long next;
829 next = pud_addr_end(addr, end);
830 alloc_init_pmd(pud, addr, next, phys, type, alloc, ng);
831 phys += next - addr;
832 } while (pud++, addr = next, addr != end);
841 unsigned long next;
844 next = p4d_addr_end(addr, end);
845 alloc_init_pud(p4d, addr, next, phys, type, alloc, ng);
846 phys += next - addr;
847 } while (p4d++, addr = next, addr != end);
947 unsigned long next = pgd_addr_end(addr, end);
949 alloc_init_p4d(pgd, addr, next, phys, type, alloc, ng);
951 phys += next - addr;
952 addr = next;
1073 unsigned long addr, next = 0;
1079 if (addr < next)
1105 /* no need to look at any vm entry until we hit the next PMD */
1106 next = (addr + PMD_SIZE - 1) & PMD_MASK;