Lines Matching refs:Node
173 _p: PhantomData<Node<K, V>>,
368 let node = unsafe { container_of!(curr, Node<K, V>, links) }; in raw_entry()
416 let this = unsafe { container_of!(node, Node<K, V>, links) }; in get()
501 let this = unsafe { container_of!(node, Node<K, V>, links) }; in find_best_match()
549 let this = unsafe { container_of!(next, Node<K, V>, links) }; in drop()
843 let this = unsafe { container_of!(node.as_ptr(), Node<K, V>, links) }; in to_key_value()
923 let this = unsafe { container_of!(self.current.as_ptr(), Node<K, V>, links) }; in remove_current()
959 let this = unsafe { container_of!(neighbor, Node<K, V>, links) }; in remove_neighbor()
1065 let this = unsafe { container_of!(node.as_ptr(), Node<K, V>, links) }; in to_key_value_raw()
1174 let cur = unsafe { container_of!(self.next, Node<K, V>, links) }; in next()
1190 node: KBox<MaybeUninit<Node<K, V>>>,
1217 Node { in into_node()
1232 node: KBox<Node<K, V>>,
1361 unsafe { &(*container_of!(self.node_links, Node<K, V>, links)).value } in get()
1369 unsafe { &mut (*(container_of!(self.node_links, Node<K, V>, links))).value } in get_mut()
1379 unsafe { &mut (*(container_of!(self.node_links, Node<K, V>, links))).value } in into_mut()
1392 node: unsafe { KBox::from_raw(container_of!(self.node_links, Node<K, V>, links)) }, in remove_node()
1423 let old_node = unsafe { KBox::from_raw(container_of!(self.node_links, Node<K, V>, links)) }; in replace()
1429 struct Node<K, V> { struct