Home
last modified time | relevance | path

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

/xnu-10002.1.13/san/memory/
H A Dkasan-arm64.c120 kasan_arm64_phystokv(uintptr_t pa, bool early) in kasan_arm64_phystokv() argument
122 return early ? (pa) : phystokv(pa); in kasan_arm64_phystokv()
144 kasan_arm64_alloc_zero_page(bool early) in kasan_arm64_alloc_zero_page() argument
147 __nosan_bzero((void *)kasan_arm64_phystokv(mem, early), ARM_PGBYTES); in kasan_arm64_alloc_zero_page()
152 kasan_arm64_alloc_valid_page(bool early) in kasan_arm64_alloc_valid_page() argument
155 kasan_impl_fill_valid_range(kasan_arm64_phystokv(mem, early), ARM_PGBYTES); in kasan_arm64_alloc_valid_page()
199 bool early = options & KASAN_ARM64_NO_PHYSMAP; in kasan_arm64_pte_map() local
207 *pte = ((uint64_t)kasan_arm64_alloc_zero_page(early) in kasan_arm64_pte_map()
211 base = (uint64_t *)kasan_arm64_phystokv(*pte & ARM_TTE_TABLE_MASK, early); in kasan_arm64_pte_map()
218 *pte = ((uint64_t)kasan_arm64_alloc_zero_page(early) in kasan_arm64_pte_map()
[all …]
/xnu-10002.1.13/pexpert/i386/
H A Dpe_kprintf.c135 boolean_t early = FALSE; in kprintf() local
138 early = TRUE; in kprintf()
142 if (!PE_kputc || early) { in kprintf()
/xnu-10002.1.13/doc/
H A Dstartup.md80 Initializes early locks that do not require any memory allocations to be
116 Allows for subsystems to steal early memory.
253 - Middle: other manual early registrations.
268 - 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-10002.1.13/tests/
H A Dproc_info.c1045 _expect_increasing_taskinfo_times(const char *name, struct proc_taskinfo *early, in _expect_increasing_taskinfo_times() argument
1049 T_EXPECT_GT(late->pti_total_system, early->pti_total_system, in _expect_increasing_taskinfo_times()
1051 T_EXPECT_GT(late->pti_threads_system, early->pti_threads_system, in _expect_increasing_taskinfo_times()
1055 T_EXPECT_GT(late->pti_threads_user, early->pti_threads_user, in _expect_increasing_taskinfo_times()
1057 T_EXPECT_GT(late->pti_total_user, early->pti_total_user, in _expect_increasing_taskinfo_times()
/xnu-10002.1.13/doc/memorystatus/
H A Doverview.md67 1. Log this state to the os log (or serial if we're early in boot)
/xnu-10002.1.13/doc/allocators/
H A Dapi-basics.md74 It is generally recommended to create zones early and to store the `zone_t`
/xnu-10002.1.13/makedefs/
H A DMakeInc.kernel29 # Generate xnu version file early (from build environment or SDK/KDK)
/xnu-10002.1.13/osfmk/kern/
H A Dzalloc.c3025 #pragma mark Zone zeroing and early random