Home
last modified time | relevance | path

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

/linux/rust/kernel/alloc/
H A Dallocator.rs77 old_layout: Layout, in call()
83 if old_layout.size() == 0 { in call()
135 old_layout: Layout, in realloc()
141 unsafe { ReallocFunc::KREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
154 old_layout: Layout, in realloc()
165 unsafe { ReallocFunc::VREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
178 old_layout: Layout, in realloc()
193 unsafe { ReallocFunc::KVREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
H A 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()
H A Dkvec.rs1090 let old_layout = self.layout; in collect() localVariable
1114 A::realloc(Some(buf.cast()), layout.into(), old_layout.into(), flags) in collect()
/linux/rust/kernel/
H A Dalloc.rs197 old_layout: Layout, in realloc()