Home
last modified time | relevance | path

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

/rust/kernel/alloc/
Dallocator.rs26 pub struct Kmalloc; struct
114 impl Kmalloc { impl
129 unsafe impl Allocator for Kmalloc { implementation
137 let layout = Kmalloc::aligned_layout(layout); in realloc()
182 let layout = Kmalloc::aligned_layout(layout); in realloc()
Dallocator_test.rs21 pub type Kmalloc = Cmalloc; typedef
22 pub type Vmalloc = Kmalloc;
23 pub type KVmalloc = Kmalloc;
Dkbox.rs6 use super::allocator::{KVmalloc, Kmalloc, Vmalloc};
114 pub type KBox<T> = Box<T, super::allocator::Kmalloc>;
Dkvec.rs9 allocator::{KVmalloc, Kmalloc, Vmalloc},
125 pub type KVec<T> = Vec<T, Kmalloc>;