Lines Matching defs:next
111 unsigned long next;
117 next = pmd_addr_end(addr, end);
119 if (ioremap_try_huge_pmd(pmd, addr, next, phys_addr, prot)) {
124 if (ioremap_pte_range(pmd, addr, next, phys_addr, prot, mask))
126 } while (pmd++, phys_addr += (next - addr), addr = next, addr != end);
157 unsigned long next;
163 next = pud_addr_end(addr, end);
165 if (ioremap_try_huge_pud(pud, addr, next, phys_addr, prot)) {
170 if (ioremap_pmd_range(pud, addr, next, phys_addr, prot, mask))
172 } while (pud++, phys_addr += (next - addr), addr = next, addr != end);
203 unsigned long next;
209 next = p4d_addr_end(addr, end);
211 if (ioremap_try_huge_p4d(p4d, addr, next, phys_addr, prot)) {
216 if (ioremap_pud_range(p4d, addr, next, phys_addr, prot, mask))
218 } while (p4d++, phys_addr += (next - addr), addr = next, addr != end);
227 unsigned long next;
237 next = pgd_addr_end(addr, end);
238 err = ioremap_p4d_range(pgd, addr, next, phys_addr, prot,
242 } while (pgd++, phys_addr += (next - addr), addr = next, addr != end);