Lines Matching refs:Uncle
684 RED_BLACK_TREE_NODE *Uncle;
699 Uncle = GrandParent->Right;
700 if (Uncle != NULL && Uncle->Color == RedBlackTreeRed) {
704 // Parent (red) Uncle (red)
710 Uncle->Color = RedBlackTreeBlack;
716 // Parent (black) Uncle (black)
733 // Tmp's uncle is black (satisfied by the case too when Tmp's uncle is
741 // Parent (red): A Uncle (black): E
761 // Parent (red): B Uncle (black): E
778 // Parent (black): B Uncle (black): E
792 // black: C [Uncle] (black): E
802 Uncle = GrandParent->Left;
803 if (Uncle != NULL && Uncle->Color == RedBlackTreeRed) {
805 Uncle->Color = RedBlackTreeBlack;