Home | History | Annotate | Download | only in libiberty

Lines Matching refs:active

56   splay_tree_node active = 0;
77 active = pending;
79 while (active)
83 /* active points to a node which has its key and value
86 if (active->left)
88 KDEL (active->left->key);
89 VDEL (active->left->value);
90 active->left->key = (splay_tree_key)pending;
91 pending = (splay_tree_node)(active->left);
93 if (active->right)
95 KDEL (active->right->key);
96 VDEL (active->right->value);
97 active->right->key = (splay_tree_key)pending;
98 pending = (splay_tree_node)(active->right);
101 temp = active;
102 active = (splay_tree_node)(temp->key);