Lines Matching refs:me
307 unsafe fn view_links(me: *const Self) -> *mut ListLinks<ID>; in view_links()
325 unsafe fn view_value(me: *mut ListLinks<ID>) -> *const Self; in view_value()
343 unsafe fn prepare_to_insert(me: *const Self) -> *mut ListLinks<ID>; in prepare_to_insert()
355 unsafe fn post_remove(me: *mut ListLinks<ID>) -> *const Self; in post_remove()
402 unsafe fn fields(me: *mut Self) -> *mut ListLinksFields { in fields()
404 unsafe { Opaque::cast_into(ptr::addr_of!((*me).inner)) } in fields()
411 unsafe fn from_fields(me: *mut ListLinksFields) -> *mut Self { in from_fields()
412 me.cast() in from_fields()
460 pub unsafe fn raw_get_self_ptr(me: *const Self) -> *const Opaque<*const T> { in raw_get_self_ptr()
462 unsafe { ptr::addr_of!((*me).self_ptr) } in raw_get_self_ptr()
1128 let me = unsafe { T::view_value(ListLinks::from_fields(self.ptr)) }; in arc() localVariable
1139 unsafe { ArcBorrow::from_raw(me) } in arc()
1155 let me = unsafe { T::view_value(ListLinks::from_fields(self.ptr)) }; in deref() localVariable
1163 unsafe { &*me } in deref()