Home
last modified time | relevance | path

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

/linux-6.15/rust/kernel/alloc/
H A Dallocator.rs88 old_layout: Layout, in call()
94 if old_layout.size() == 0 { in call()
135 old_layout: Layout, in realloc()
139 unsafe { ReallocFunc::KREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
152 old_layout: Layout, in realloc()
163 unsafe { ReallocFunc::VREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
176 old_layout: Layout, in realloc()
187 unsafe { ReallocFunc::KVREALLOC.call(ptr, layout, old_layout, flags) } in realloc()
H A Dallocator_test.rs41 old_layout: Layout, in realloc()
46 if old_layout.size() == 0 { in realloc()
103 cmp::min(layout.size(), old_layout.size()), in realloc()
H A Dkvec.rs747 let old_layout = self.layout; in collect() localVariable
770 A::realloc(Some(buf.cast()), layout.into(), old_layout.into(), flags) in collect()
/linux-6.15/rust/kernel/
H A Dalloc.rs197 old_layout: Layout, in realloc()