Home | History | Annotate | Download | only in BaseOrderedCollectionRedBlackTreeLib

Lines Matching defs:UserStruct

51   VOID                 *UserStruct;

76 return Node->UserStruct;
214 Result = Tree->KeyCompare (StandaloneKey, Node->UserStruct);
532 @param[in,out] Tree The tree to insert UserStruct into.
540 now links UserStruct.
547 compares equal to UserStruct), with return value
554 @param[in] UserStruct The user structure to link into the tree.
555 UserStruct is ordered against in-tree user
560 been allocated, linking UserStruct. The new
578 that compares equal to UserStruct. The node
590 IN VOID *UserStruct
608 Result = Tree->UserStructCompare (UserStruct, Tmp->UserStruct);
639 Tmp->UserStruct = UserStruct;
908 @param[out] UserStruct If the caller provides this optional output-only
923 OUT VOID **UserStruct OPTIONAL
939 if (UserStruct != NULL) {
940 *UserStruct = Node->UserStruct;
1433 ASSERT (Tree->UserStructCompare (Last->UserStruct, Node->UserStruct) < 0);
1445 ASSERT (Tree->UserStructCompare (Last->UserStruct, Node->UserStruct) > 0);