Lines Matching refs:Node
173 _p: PhantomData<Node<K, V>>,
332 let node = unsafe { container_of!(curr, Node<K, V>, links) }; in raw_entry()
380 let this = unsafe { container_of!(node, Node<K, V>, links) }; in get()
423 let mut best_match: Option<NonNull<Node<K, V>>> = None; in cursor_lower_bound()
427 let this = unsafe { container_of!(node, Node<K, V>, links) }.cast_mut(); in cursor_lower_bound()
489 let this = unsafe { container_of!(next, Node<K, V>, links) }; in drop()
764 let this = unsafe { container_of!(self.current.as_ptr(), Node<K, V>, links) }.cast_mut(); in remove_current()
809 let this = unsafe { container_of!(neighbor, Node<K, V>, links) }.cast_mut(); in remove_neighbor()
915 let this = unsafe { container_of!(node.as_ptr(), Node<K, V>, links) }.cast_mut(); in to_key_value_raw()
1024 let cur = unsafe { container_of!(self.next, Node<K, V>, links) }.cast_mut(); in next()
1040 node: KBox<MaybeUninit<Node<K, V>>>,
1067 Node { in into_node()
1082 node: KBox<Node<K, V>>,
1211 unsafe { &(*container_of!(self.node_links, Node<K, V>, links)).value } in get()
1219 unsafe { &mut (*(container_of!(self.node_links, Node<K, V>, links).cast_mut())).value } in get_mut()
1229 unsafe { &mut (*(container_of!(self.node_links, Node<K, V>, links).cast_mut())).value } in into_mut()
1243 KBox::from_raw(container_of!(self.node_links, Node<K, V>, links).cast_mut()) in remove_node()
1276 unsafe { KBox::from_raw(container_of!(self.node_links, Node<K, V>, links).cast_mut()) }; in replace()
1282 struct Node<K, V> { struct