Home
last modified time | relevance | path

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

/Linux-v6.1/rust/alloc/
Dalloc.rs161 pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8 { in alloc_zeroed() function
173 let raw_ptr = if zeroed { alloc_zeroed(layout) } else { alloc(layout) }; in alloc_impl()