hp_sibling
for (child = root; child; child = child->hp_sibling)
for (child = root; child != NULL; child = child->hp_sibling)
listp->prev->hp_sibling = node;
usage->hp_sibling = node->hp_child;
port = hp_sibling(port);
prev_child->hp_sibling = child;
for (node = root; node != NULL; node = node->hp_sibling)
sibling = node->hp_sibling;
for (node = root; node; node = node->hp_sibling) {
if (node->hp_sibling == NULL) {
return (node->hp_sibling);
for (node = root; node != NULL; node = node->hp_sibling) {
prev_root->hp_sibling = root;
for (root = root_list; root; root = root->hp_sibling)
for (child = root->hp_child; child != NULL; child = child->hp_sibling) {
hp_node_t hp_sibling(hp_node_t node);
hp_node_t hp_sibling;