Home
last modified time | relevance | path

Searched refs:me (Results 1 – 3 of 3) sorted by relevance

/rust/alloc/vec/
Dmod.rs938 let mut me = ManuallyDrop::new(self); in into_raw_parts() localVariable
939 (me.as_mut_ptr(), me.len(), me.capacity()) in into_raw_parts()
982 let mut me = ManuallyDrop::new(self); in into_raw_parts_with_alloc() localVariable
983 let len = me.len(); in into_raw_parts_with_alloc()
984 let capacity = me.capacity(); in into_raw_parts_with_alloc()
985 let ptr = me.as_mut_ptr(); in into_raw_parts_with_alloc()
986 let alloc = unsafe { ptr::read(me.allocator()) }; in into_raw_parts_with_alloc()
1220 let me = ManuallyDrop::new(self); in into_boxed_slice() localVariable
1221 let buf = ptr::read(&me.buf); in into_boxed_slice()
1222 let len = me.len(); in into_boxed_slice()
[all …]
/rust/alloc/
Dslice.rs624 let mut me = self.to_vec(); in to_ascii_uppercase() localVariable
625 me.make_ascii_uppercase(); in to_ascii_uppercase()
626 me in to_ascii_uppercase()
645 let mut me = self.to_vec(); in to_ascii_lowercase() localVariable
646 me.make_ascii_lowercase(); in to_ascii_lowercase()
647 me in to_ascii_lowercase()
Draw_vec.rs169 let me = ManuallyDrop::new(self); in into_box() localVariable
171 let slice = slice::from_raw_parts_mut(me.ptr() as *mut MaybeUninit<T>, len); in into_box()
172 Box::from_raw_in(slice, ptr::read(&me.alloc)) in into_box()