Lines Matching refs:next
30 unsigned long next; in kasan_early_pte_populate() local
37 next = addr + PAGE_SIZE; in kasan_early_pte_populate()
40 } while (pte++, addr = next, addr != end && pte_none(*pte)); in kasan_early_pte_populate()
48 unsigned long next; in kasan_early_pmd_populate() local
55 next = pmd_addr_end(addr, end); in kasan_early_pmd_populate()
56 kasan_early_pte_populate(pmd, addr, next); in kasan_early_pmd_populate()
57 } while (pmd++, addr = next, addr != end && pmd_none(*pmd)); in kasan_early_pmd_populate()
65 unsigned long next; in kasan_early_pud_populate() local
72 next = pud_addr_end(addr, end); in kasan_early_pud_populate()
73 kasan_early_pmd_populate(pud, addr, next); in kasan_early_pud_populate()
74 } while (pud++, addr = next, addr != end && pud_none(*pud)); in kasan_early_pud_populate()
81 unsigned long next; in kasan_map_early_shadow() local
86 next = pgd_addr_end(addr, end); in kasan_map_early_shadow()
87 kasan_early_pud_populate(pgd, addr, next); in kasan_map_early_shadow()
88 } while (pgd++, addr = next, addr != end); in kasan_map_early_shadow()