Home
last modified time | relevance | path

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

/rust/kernel/alloc/
Dallocator.rs76 old_layout: Layout, in call()
82 if old_layout.size() == 0 { in call()
134 old_layout: Layout, in realloc()
140 unsafe { ReallocFunc::KREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
153 old_layout: Layout, in realloc()
164 unsafe { ReallocFunc::VREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
177 old_layout: Layout, in realloc()
192 unsafe { ReallocFunc::KVREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
Dallocator_test.rs52 old_layout: Layout, in realloc()
57 if old_layout.size() == 0 { in realloc()
114 cmp::min(layout.size(), old_layout.size()), in realloc()
Dkvec.rs1040 let old_layout = self.layout; in collect() localVariable
1064 A::realloc(Some(buf.cast()), layout.into(), old_layout.into(), flags) in collect()
/rust/kernel/
Dalloc.rs197 old_layout: Layout, in realloc()