Lines Matching defs:to
12 * the algorithm explanation for this code comes from purists.org, which seems to have disappeared since
909 AVLTree::Relocate (AVLTree * to)
912 elem[LEFT]->elem[RIGHT] = to;
914 elem[RIGHT]->elem[LEFT] = to;
915 to->elem[LEFT] = elem[LEFT];
916 to->elem[RIGHT] = elem[RIGHT];
921 parent->child[LEFT] = to;
923 parent->child[RIGHT] = to;
927 child[RIGHT]->parent = to;
931 child[LEFT]->parent = to;
933 to->parent = parent;
934 to->child[RIGHT] = child[RIGHT];
935 to->child[LEFT] = child[LEFT];