Home
last modified time | relevance | path

Searched refs:__rust_realloc (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/rust/kernel/
Dallocator.rs45 fn __rust_realloc(ptr: *mut u8, _old_size: usize, _align: usize, new_size: usize) -> *mut u8 { in __rust_realloc() function
/Linux-v6.1/rust/alloc/
Dalloc.rs38 fn __rust_realloc(ptr: *mut u8, old_size: usize, align: usize, new_size: usize) -> *mut u8; in __rust_realloc() function
128 unsafe { __rust_realloc(ptr, layout.size(), layout.align(), new_size) } in realloc()