Home
last modified time | relevance | path

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

/openbmc/linux/rust/alloc/
H A Dboxed.rs592 let (raw, alloc) = Box::into_raw_with_allocator(boxed); in into_boxed_slice()
829 let (raw, alloc) = Box::into_raw_with_allocator(self); in assume_init()
904 let (raw, alloc) = Box::into_raw_with_allocator(self); in assume_init()
1056 Self::into_raw_with_allocator(b).0 in into_raw()
1107 pub fn into_raw_with_allocator(b: Self) -> (*mut T, A) { in into_raw_with_allocator() method
1626 let (raw, alloc) = Box::into_raw_with_allocator(s); in from()
1659 let (ptr, alloc) = Box::into_raw_with_allocator(boxed_slice);
1773 let (raw, alloc): (*mut dyn Any, _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1832 let (raw, alloc): (*mut (dyn Any + Send), _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1892 Box::into_raw_with_allocator(self); in downcast_unchecked()
H A Dslice.rs105 let (b, alloc) = Box::into_raw_with_allocator(b); in into_vec()