Searched refs:KAVL_GET_POINTER (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/table/
H A Davl_GetBestFit.cpp.h59 pNode = KAVL_GET_POINTER(&pNode->pLeft);
67 pNode = KAVL_GET_POINTER(&pNode->pRight);
80 pNode = KAVL_GET_POINTER(&pNode->pLeft);
89 pNode = KAVL_GET_POINTER(&pNode->pRight);
H A Davl_Get.cpp.h49 pNode = KAVL_GET_POINTER(&pNode->pLeft);
56 pNode = KAVL_GET_POINTER(&pNode->pRight);
H A Davl_RemoveNode.cpp.h55 pCurNode = KAVL_GET_POINTER(&pCurNode->pLeft);
62 pCurNode = KAVL_GET_POINTER(&pCurNode->pRight);
75 PKAVLNODECORE pNext = KAVL_GET_POINTER(&pCurNode->pList);
79 KAVL_SET_POINTER(&pCurNode->pList, KAVL_GET_POINTER(&pNode->pList));
101 PKAVLNODECORE pNewUs = KAVL_GET_POINTER(&pNode->pList);
106 KAVL_SET_POINTER(&pNewUs->pLeft, KAVL_GET_POINTER(&pNode->pLeft));
111 KAVL_SET_POINTER(&pNewUs->pRight, KAVL_GET_POINTER(&pNode->pRight));
H A Davl_Destroy.cpp.h53 apEntries[0] = KAVL_GET_POINTER(ppTree);
61 apEntries[cEntries++] = KAVL_GET_POINTER(&pNode->pLeft);
63 apEntries[cEntries++] = KAVL_GET_POINTER(&pNode->pRight);
72 PKAVLNODECORE pEqual = KAVL_GET_POINTER(&pNode->pList);
88 if (KAVL_GET_POINTER(&pParent->pLeft) == pNode)
H A Davl_DoWithAll.cpp.h54 AVLStack.aEntries[0] = KAVL_GET_POINTER(ppTree);
68 AVLStack.aEntries[AVLStack.cEntries++] = KAVL_GET_POINTER(&pNode->pLeft);
79 for (pEqual = KAVL_GET_POINTER(&pNode->pList); pEqual; pEqual = KAVL_GET_POINTER_NULL(&pEqual->pList))
92 AVLStack.aEntries[AVLStack.cEntries++] = KAVL_GET_POINTER(&pNode->pRight);
108 AVLStack.aEntries[AVLStack.cEntries++] = KAVL_GET_POINTER(&pNode->pRight);
119 for (pEqual = KAVL_GET_POINTER(&pNode->pList); pEqual; pEqual = KAVL_GET_POINTER_NULL(&pEqual->pList))
132 AVLStack.aEntries[AVLStack.cEntries++] = KAVL_GET_POINTER(&pNode->pLeft);
H A Davl_Range.cpp.h50 pNode = KAVL_GET_POINTER(&pNode->pLeft);
57 pNode = KAVL_GET_POINTER(&pNode->pRight);
H A Davl_Base.cpp.h63 /** @def KAVL_GET_POINTER
98 #ifndef KAVL_GET_POINTER
100 # define KAVL_GET_POINTER(pp) ( (PKAVLNODECORE)((intptr_t)(pp) + *(pp)) ) macro
101 # define KAVL_GET_POINTER_NULL(pp) ( *(pp) != KAVL_NULL ? KAVL_GET_POINTER(pp) : NULL )
103 # define KAVL_SET_POINTER_NULL(pp, pp2) ( (*(pp)) = *(pp2) != KAVL_NULL ? (intptr_t)KAVL_GET_POINTER(pp2) - (intptr_t)(pp) : KAVL_NULL )
105 # define KAVL_GET_POINTER(pp) ( *(pp) ) macro
213 PKAVLNODECORE pNode = KAVL_GET_POINTER(ppNode);
319 pCurNode = KAVL_GET_POINTER(ppCurNode);
410 pDeleteNode = KAVL_GET_POINTER(ppDeleteNode);
430 register PKAVLNODECORE pLeftLeast = KAVL_GET_POINTER(ppLeftLeas
[all...]
H A Davl_RemoveBestFit.cpp.h59 PKAVLNODECORE pRet = KAVL_GET_POINTER(&pNode->pList);

Completed in 43 milliseconds