Home
last modified time | relevance | path

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

/DragonOS/kernel/src/mm/allocator/
H A Dkernel_allocator.rs66 if allocator_select_condition(layout) { in local_alloc()
80 if allocator_select_condition(layout) { in local_alloc_zeroed()
98 if allocator_select_condition(layout) || ((ptr as usize) % 4096) == 0 { in local_dealloc()
110 if allocator_select_condition(layout) { in alloc()
120 if allocator_select_condition(layout) { in alloc_zeroed()
129 if allocator_select_condition(layout) || ((ptr as usize) % 4096) == 0 { in dealloc()
139 fn allocator_select_condition(layout: Layout) -> bool { in allocator_select_condition() function