Lines Matching defs:node
668 struct assoc_array_node *node;
673 struct assoc_array_node *node;
723 * Start from the root node of the index tree. Because of the way the
725 * branch of the root node (root slot 0) or in the root node itself.
746 node = assoc_array_ptr_to_node(ptr);
750 node = assoc_array_ptr_to_node(ptr);
751 ptr = node->slots[0];
756 /* Descend to a more distal node in this keyring's content tree and go
765 node = assoc_array_ptr_to_node(ptr);
771 /* Go through the slots in a node */
773 ptr = READ_ONCE(node->slots[slot]);
775 if (assoc_array_ptr_is_meta(ptr) && node->back_pointer)
799 stack[sp].node = node;
808 /* We've dealt with all the slots in the current node, so now we need
811 ptr = READ_ONCE(node->back_pointer);
812 slot = node->parent_slot;
821 node = assoc_array_ptr_to_node(ptr);
828 if (node->back_pointer) {
846 node = stack[sp].node;
1211 * be a matter of seeing if node A is somewhere in tree B.