• Home
  • Raw
  • Download

Lines Matching refs:NewRoot

429   OUT    RED_BLACK_TREE_NODE **NewRoot  in RedBlackTreeRotateRight()  argument
446 *NewRoot = LeftChild; in RedBlackTreeRotateRight()
494 OUT RED_BLACK_TREE_NODE **NewRoot in RedBlackTreeRotateLeft() argument
511 *NewRoot = RightChild; in RedBlackTreeRotateLeft()
597 RED_BLACK_TREE_NODE *NewRoot; in OrderedCollectionInsert() local
681 NewRoot = Tree->Root; in OrderedCollectionInsert()
682 while (Tmp != NewRoot && Parent->Color == RedBlackTreeRed) { in OrderedCollectionInsert()
752 RedBlackTreeRotateLeft (Tmp, &NewRoot); in OrderedCollectionInsert()
783 RedBlackTreeRotateRight (GrandParent, &NewRoot); in OrderedCollectionInsert()
812 RedBlackTreeRotateRight (Tmp, &NewRoot); in OrderedCollectionInsert()
818 RedBlackTreeRotateLeft (GrandParent, &NewRoot); in OrderedCollectionInsert()
823 NewRoot->Color = RedBlackTreeBlack; in OrderedCollectionInsert()
824 Tree->Root = NewRoot; in OrderedCollectionInsert()
926 RED_BLACK_TREE_NODE *NewRoot; in OrderedCollectionDelete() local
934 NewRoot = Tree->Root; in OrderedCollectionDelete()
965 NewRoot = Child; in OrderedCollectionDelete()
1101 NewRoot = ToRelink; in OrderedCollectionDelete()
1137 while (Child != NewRoot && NodeIsNullOrBlack (Child)) { in OrderedCollectionDelete()
1173 RedBlackTreeRotateLeft (Parent, &NewRoot); in OrderedCollectionDelete()
1240 RedBlackTreeRotateRight (Sibling, &NewRoot); in OrderedCollectionDelete()
1284 RedBlackTreeRotateLeft (Parent, &NewRoot); in OrderedCollectionDelete()
1285 Child = NewRoot; in OrderedCollectionDelete()
1299 RedBlackTreeRotateRight (Parent, &NewRoot); in OrderedCollectionDelete()
1316 RedBlackTreeRotateLeft (Sibling, &NewRoot); in OrderedCollectionDelete()
1327 RedBlackTreeRotateRight (Parent, &NewRoot); in OrderedCollectionDelete()
1328 Child = NewRoot; in OrderedCollectionDelete()
1338 Tree->Root = NewRoot; in OrderedCollectionDelete()