Home
last modified time | relevance | path

Searched refs:early (Results 1 – 6 of 6) sorted by relevance

/xnu-8020.101.4/san/memory/
H A Dkasan-arm64.c111 kasan_arm64_phystokv(uintptr_t pa, bool early) in kasan_arm64_phystokv() argument
113 return early ? (pa) : phystokv(pa); in kasan_arm64_phystokv()
135 kasan_arm64_alloc_zero_page(bool early) in kasan_arm64_alloc_zero_page() argument
138 __nosan_bzero((void *)kasan_arm64_phystokv(mem, early), ARM_PGBYTES); in kasan_arm64_alloc_zero_page()
143 kasan_arm64_alloc_valid_page(bool early) in kasan_arm64_alloc_valid_page() argument
146 kasan_impl_fill_valid_range(kasan_arm64_phystokv(mem, early), ARM_PGBYTES); in kasan_arm64_alloc_valid_page()
194 bool early = options & KASAN_ARM64_NO_PHYSMAP; in kasan_arm64_pte_map() local
201 *pte = ((uint64_t)kasan_arm64_alloc_zero_page(early) in kasan_arm64_pte_map()
205 base = (uint64_t *)kasan_arm64_phystokv(*pte & ARM_TTE_TABLE_MASK, early); in kasan_arm64_pte_map()
212 *pte = ((uint64_t)kasan_arm64_alloc_zero_page(early) in kasan_arm64_pte_map()
[all …]
/xnu-8020.101.4/pexpert/i386/
H A Dpe_kprintf.c134 boolean_t early = FALSE; in kprintf() local
137 early = TRUE; in kprintf()
141 if (!PE_kputc || early) { in kprintf()
/xnu-8020.101.4/doc/
H A Dstartup.md78 Initializes early locks that do not require any memory allocations to be
115 Allows for subsystems to steal early memory.
127 Denotes that the early kernel VM is initialized.
270 - Middle: other manual early registrations.
285 - Middle: Initialize some early BSD subsystems
H A Dxnu_build_consolidation.md87 early boot. The way these checks are performed varies from feature to feature (for example, VHE is …
/xnu-8020.101.4/doc/allocators/
H A Dapi-basics.md74 It is generally recommended to create zones early and to store the `zone_t`
/xnu-8020.101.4/osfmk/kern/
H A Dzalloc.c3268 #pragma mark Zone zeroing and early random