Lines Matching refs:into_raw
42 fn into_raw(&self, ptr: Self::Pointer) -> *const Self::Value; in into_raw() method
82 fn into_raw(&self, ptr: &'a T) -> *const T { in into_raw() method
97 fn into_raw(&self, ptr: UnsafeRef<T>) -> *const T { in into_raw() method
98 UnsafeRef::into_raw(ptr) as *const T in into_raw()
113 fn into_raw(&self, ptr: Box<T>) -> *const T { in into_raw() method
114 Box::into_raw(ptr) as *const T in into_raw()
129 fn into_raw(&self, ptr: Rc<T>) -> *const T { in into_raw() method
130 Rc::into_raw(ptr) in into_raw()
145 fn into_raw(&self, ptr: Arc<T>) -> *const T { in into_raw() method
146 Arc::into_raw(ptr) in into_raw()
178 .into_raw(unsafe { core::ptr::read(&*self.pointer) }); in clone_pointer_from_raw()
204 let r = pointer_ops.into_raw(p); in test_box()
218 let r = pointer_ops.into_raw(p); in test_rc()
232 let r = pointer_ops.into_raw(p); in test_arc()
247 let r = pointer_ops.into_raw(p); in test_box_unsized()
264 let r = pointer_ops.into_raw(p); in test_rc_unsized()
281 let r = pointer_ops.into_raw(p); in test_arc_unsized()