Home
last modified time | relevance | path

Searched refs:uchHeight (Results 1 – 2 of 2) sorted by relevance

/dports/devel/kBuild/kBuild-0.1.9998/src/fastdep/
H A Davl.c18 #define AVL_HEIGHTOF(pNode) ((unsigned char)((pNode) != NULL ? pNode->uchHeight : 0))
127 pNode->uchHeight = 1; in AVLInsert()
232 pLeftLeast->uchHeight = pDeleteNode->uchHeight; in AVLRemove()
776 …pLeftNode->uchHeight = (unsigned char)(1 + (pNode->uchHeight = (unsigned char)(1 + uchLeftRightHei… in AVLRebalance()
785 pLeftNode->uchHeight = pNode->uchHeight = uchLeftRightHeight; in AVLRebalance()
786 pLeftRightNode->uchHeight = uchLeftHeight; in AVLRebalance()
800 …pRightNode->uchHeight = (unsigned char)(1 + (pNode->uchHeight = (unsigned char)(1 + uchRightLeftHe… in AVLRebalance()
809 pRightNode->uchHeight = pNode->uchHeight = uchRightLeftHeight; in AVLRebalance()
810 pRightLeftNode->uchHeight = uchRightHeight; in AVLRebalance()
817 if (uchHeight == pNode->uchHeight) in AVLRebalance()
[all …]
H A Davl.h56 … unsigned char uchHeight; /* Height of this tree: max(heigth(left), heigth(right)) + 1 */ member