Searched refs:ppTree (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/common/table/
H A Davl_Range.cpp.h35 * @param ppTree Pointer to Pointer to the tree root node.
38 KAVL_DECL(PKAVLNODECORE) KAVL_FN(RangeGet)(PPKAVLNODECORE ppTree, register KAVLKEY Key) argument
40 register PKAVLNODECORE pNode = KAVL_GET_POINTER_NULL(ppTree);
73 * @param ppTree Pointer to Pointer to the tree root node.
76 RTDECL(PKAVLNODECORE) KAVL_FN(RangeRemove)(PPKAVLNODECORE ppTree, KAVLKEY Key) argument
78 PKAVLNODECORE pNode = KAVL_FN(RangeGet)(ppTree, Key);
80 return KAVL_FN(Remove)(ppTree, pNode->Key);
H A Davl_RemoveBestFit.cpp.h37 * @param ppTree Pointer to Pointer to the tree root node.
46 KAVL_DECL(PKAVLNODECORE) KAVL_FN(RemoveBestFit)(PPKAVLNODECORE ppTree, KAVLKEY Key, bool fAbove) argument
53 PKAVLNODECORE pNode = KAVL_FN(GetBestFit)(ppTree, Key, fAbove);
64 pNode = KAVL_FN(Remove)(ppTree, pNode->Key);
H A Davl_Get.cpp.h34 * @param ppTree Pointer to the AVL-tree root node pointer.
38 KAVL_DECL(PKAVLNODECORE) KAVL_FN(Get)(PPKAVLNODECORE ppTree, KAVLKEY Key) argument
40 register PKAVLNODECORE pNode = KAVL_GET_POINTER_NULL(ppTree);
H A Davl_Destroy.cpp.h39 * @param ppTree Pointer to the AVL-tree root node pointer.
43 KAVL_DECL(int) KAVL_FN(Destroy)(PPKAVLNODECORE ppTree, PKAVLCALLBACK pfnCallBack, void *pvUser) argument
49 if (*ppTree == KAVL_NULL)
53 apEntries[0] = KAVL_GET_POINTER(ppTree);
94 *ppTree = KAVL_NULL;
104 kASSERT(*ppTree == KAVL_NULL);
H A Davl_Enum.cpp.h37 * @param ppTree Pointer to pointer to the tree root node.
39 KAVL_DECL(PKAVLNODECORE) KAVL_FN(GetRoot)(PPKAVLNODECORE ppTree) argument
41 return KAVL_GET_POINTER_NULL(ppTree);
H A Davl_GetBestFit.cpp.h36 * @param ppTree Pointer to Pointer to the tree root node.
44 KAVL_DECL(PKAVLNODECORE) KAVL_FN(GetBestFit)(PPKAVLNODECORE ppTree, KAVLKEY Key, bool fAbove) argument
46 register PKAVLNODECORE pNode = KAVL_GET_POINTER_NULL(ppTree);
H A Davl_RemoveNode.cpp.h32 * @param ppTree Pointer to the AVL-tree root structure.
38 KAVL_DECL(PKAVLNODECORE) KAVL_FN(RemoveNode)(PPKAVLNODECORE ppTree, PKAVLNODECORE pNode) argument
46 PKAVLNODECORE pCurNode = KAVL_GET_POINTER_NULL(ppTree);
98 KAVL_FN(Remove)(ppTree, pNode->Key);
123 KAVL_SET_POINTER(ppTree, pNewUs);
H A Davl_DoWithAll.cpp.h34 * @param ppTree Pointer to the AVL-tree root node pointer.
40 KAVL_DECL(int) KAVL_FN(DoWithAll)(PPKAVLNODECORE ppTree, int fFromLeft, PKAVLCALLBACK pfnCallBack, void * pvParam) argument
49 if (*ppTree == KAVL_NULL)
54 AVLStack.aEntries[0] = KAVL_GET_POINTER(ppTree);
H A Davl_Base.cpp.h285 * @param ppTree Pointer to the AVL-tree root node pointer.
299 KAVL_DECL(bool) KAVL_FN(Insert)(PPKAVLNODECORE ppTree, PKAVLNODECORE pNode) argument
302 PPKAVLNODECORE ppCurNode = ppTree;
363 * @param ppTree Pointer to the AVL-tree root node pointer.
399 KAVL_DECL(PKAVLNODECORE) KAVL_FN(Remove)(PPKAVLNODECORE ppTree, KAVLKEY Key) argument
402 PPKAVLNODECORE ppDeleteNode = ppTree;
/vbox/include/iprt/
H A Davl.h74 RTDECL(bool) RTAvlPVInsert(PAVLPVTREE ppTree, PAVLPVNODECORE pNode);
75 RTDECL(PAVLPVNODECORE) RTAvlPVRemove(PAVLPVTREE ppTree, AVLPVKEY Key);
76 RTDECL(PAVLPVNODECORE) RTAvlPVGet(PAVLPVTREE ppTree, AVLPVKEY Key);
77 RTDECL(PAVLPVNODECORE) RTAvlPVGetBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
78 RTDECL(PAVLPVNODECORE) RTAvlPVRemoveBestFit(PAVLPVTREE ppTree, AVLPVKEY Key, bool fAbove);
79 RTDECL(int) RTAvlPVDoWithAll(PAVLPVTREE ppTree, int fFromLeft, PAVLPVCALLBACK pfnCallBack, void *pvParam);
80 RTDECL(int) RTAvlPVDestroy(PAVLPVTREE ppTree, PAVLPVCALLBACK pfnCallBack, void *pvParam);
116 RTDECL(bool) RTAvlULInsert(PPAVLULNODECORE ppTree, PAVLULNODECORE pNode);
117 RTDECL(PAVLULNODECORE) RTAvlULRemove(PPAVLULNODECORE ppTree, AVLULKEY Key);
118 RTDECL(PAVLULNODECORE) RTAvlULGet(PPAVLULNODECORE ppTree, AVLULKE
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DPATM.cpp1392 * @param ppTree Tree to empty
1394 static void patmEmptyTree(PVM pVM, PAVLPVNODECORE *ppTree) argument
1397 RTAvlPVDestroy(ppTree, patmEmptyTreePVCallback, NULL);
1414 * @param ppTree Tree to empty
1416 static void patmEmptyTreeU32(PVM pVM, PPAVLU32NODECORE ppTree) argument
1419 RTAvlU32Destroy(ppTree, patmEmptyTreeU32Callback, NULL);

Completed in 227 milliseconds