Lines Matching refs:RedBlackTreeBlack
31 RedBlackTreeBlack enumerator
650 Tmp->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
709 Parent->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
710 Uncle->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
768 Parent->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
804 Parent->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
805 Uncle->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
816 Parent->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
823 NewRoot->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
849 return (BOOLEAN)(Node == NULL || Node->Color == RedBlackTreeBlack); in NodeIsNullOrBlack()
1119 if (ColorOfUnlinked == RedBlackTreeBlack) { in OrderedCollectionDelete()
1171 Sibling->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1185 ASSERT (Sibling->Color == RedBlackTreeBlack); in OrderedCollectionDelete()
1238 LeftNephew->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1254 ASSERT (Sibling->Color == RedBlackTreeBlack); in OrderedCollectionDelete()
1282 Parent->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1283 RightNephew->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1297 Sibling->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1304 ASSERT (Sibling->Color == RedBlackTreeBlack); in OrderedCollectionDelete()
1314 RightNephew->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1323 ASSERT (Sibling->Color == RedBlackTreeBlack); in OrderedCollectionDelete()
1325 Parent->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1326 LeftNephew->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1334 Child->Color = RedBlackTreeBlack; in OrderedCollectionDelete()
1371 ASSERT (Node->Color == RedBlackTreeRed || Node->Color == RedBlackTreeBlack); in RedBlackTreeRecursiveCheck()
1388 return (Node->Color == RedBlackTreeBlack) + LeftHeight; in RedBlackTreeRecursiveCheck()