Lines Matching refs:pP
214 static amatch_avl *amatchAvlRotateBefore(amatch_avl *pP){ in amatchAvlRotateBefore() argument
215 amatch_avl *pB = pP->pBefore; in amatchAvlRotateBefore()
217 pB->pUp = pP->pUp; in amatchAvlRotateBefore()
218 pB->pAfter = pP; in amatchAvlRotateBefore()
219 pP->pUp = pB; in amatchAvlRotateBefore()
220 pP->pBefore = pY; in amatchAvlRotateBefore()
221 if( pY ) pY->pUp = pP; in amatchAvlRotateBefore()
222 amatchAvlRecomputeHeight(pP); in amatchAvlRotateBefore()
235 static amatch_avl *amatchAvlRotateAfter(amatch_avl *pP){ in amatchAvlRotateAfter() argument
236 amatch_avl *pA = pP->pAfter; in amatchAvlRotateAfter()
238 pA->pUp = pP->pUp; in amatchAvlRotateAfter()
239 pA->pBefore = pP; in amatchAvlRotateAfter()
240 pP->pUp = pA; in amatchAvlRotateAfter()
241 pP->pAfter = pY; in amatchAvlRotateAfter()
242 if( pY ) pY->pUp = pP; in amatchAvlRotateAfter()
243 amatchAvlRecomputeHeight(pP); in amatchAvlRotateAfter()