Lines Matching refs:pLeftNode
214 PKAVLNODECORE pLeftNode = KAVL_GET_POINTER_NULL(&pNode->pLeft);
215 unsigned char uchLeftHeight = AVL_HEIGHTOF(pLeftNode);
221 PKAVLNODECORE pLeftLeftNode = KAVL_GET_POINTER_NULL(&pLeftNode->pLeft);
222 PKAVLNODECORE pLeftRightNode = KAVL_GET_POINTER_NULL(&pLeftNode->pRight);
227 KAVL_SET_POINTER_NULL(&pNode->pLeft, &pLeftNode->pRight);
228 KAVL_SET_POINTER(&pLeftNode->pRight, pNode);
229 pLeftNode->uchHeight = (unsigned char)(1 + (pNode->uchHeight = (unsigned char)(1 + uchLeftRightHeight)));
230 KAVL_SET_POINTER(ppNode, pLeftNode);
234 KAVL_SET_POINTER_NULL(&pLeftNode->pRight, &pLeftRightNode->pLeft);
236 KAVL_SET_POINTER(&pLeftRightNode->pLeft, pLeftNode);
238 pLeftNode->uchHeight = pNode->uchHeight = uchLeftRightHeight;