Home
last modified time | relevance | path

Searched defs:Layout (Results 1 – 4 of 4) sorted by relevance

/rust/kernel/alloc/
Dallocator.rs75 layout: Layout, in call()
76 old_layout: Layout, in call()
117 pub fn aligned_layout(layout: Layout) -> Layout { in aligned_layout()
133 layout: Layout, in realloc()
134 old_layout: Layout, in realloc()
152 layout: Layout, in realloc()
153 old_layout: Layout, in realloc()
176 layout: Layout, in realloc()
177 old_layout: Layout, in realloc()
Dallocator_test.rs28 pub fn aligned_layout(layout: Layout) -> Layout { in aligned_layout()
51 layout: Layout, in realloc()
52 old_layout: Layout, in realloc()
Dlayout.rs84 impl<T> From<ArrayLayout<T>> for Layout { implementation
/rust/kernel/
Dalloc.rs156 fn alloc(layout: Layout, flags: Flags) -> Result<NonNull<[u8]>, AllocError> { in alloc()
196 layout: Layout, in realloc()
197 old_layout: Layout, in realloc()
210 unsafe fn free(ptr: NonNull<u8>, layout: Layout) { in free()