Lines Matching full:rightchild
464 Pivot RightChild
466 Node1 RightChild ---> Pivot Node2
470 The ordering Node1 < Pivot < RightLeftChild < RightChild < Node2 is kept
498 RED_BLACK_TREE_NODE *RightChild;
502 RightChild = Pivot->Right;
503 RightLeftChild = RightChild->Left;
509 RightChild->Parent = Parent;
511 *NewRoot = RightChild;
514 Parent->Left = RightChild;
516 Parent->Right = RightChild;
519 RightChild->Left = Pivot;
520 Pivot->Parent = RightChild;