Home
last modified time | relevance | path

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

/Linux-v6.6/rust/alloc/
Dboxed.rs584 let (raw, alloc) = Box::into_raw_with_allocator(boxed); in into_boxed_slice()
817 let (raw, alloc) = Box::into_raw_with_allocator(self); in assume_init()
892 let (raw, alloc) = Box::into_raw_with_allocator(self); in assume_init()
1044 Self::into_raw_with_allocator(b).0 in into_raw()
1095 pub fn into_raw_with_allocator(b: Self) -> (*mut T, A) { in into_raw_with_allocator() method
1604 let (raw, alloc) = Box::into_raw_with_allocator(s); in from()
1637 let (ptr, alloc) = Box::into_raw_with_allocator(boxed_slice);
1751 let (raw, alloc): (*mut dyn Any, _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1810 let (raw, alloc): (*mut (dyn Any + Send), _) = Box::into_raw_with_allocator(self); in downcast_unchecked()
1870 Box::into_raw_with_allocator(self); in downcast_unchecked()
Dslice.rs105 let (b, alloc) = Box::into_raw_with_allocator(b); in into_vec()