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

/vbox/src/VBox/Runtime/common/table/
H A Davl_Base.cpp.h61 #define AVL_HEIGHTOF(pNode) ((unsigned char)((pNode) != NULL ? pNode->uchHeight : 0)) macro
215 unsigned char uchLeftHeight = AVL_HEIGHTOF(pLeftNode);
217 unsigned char uchRightHeight = AVL_HEIGHTOF(pRightNode);
223 unsigned char uchLeftRightHeight = AVL_HEIGHTOF(pLeftRightNode);
225 if (AVL_HEIGHTOF(pLeftLeftNode) >= uchLeftRightHeight)
246 unsigned char uchRightLeftHeight = AVL_HEIGHTOF(pRightLeftNode);
249 if (AVL_HEIGHTOF(pRightRightNode) >= uchRightLeftHeight)

Completed in 42 milliseconds