Searched refs:pSib (Results 1 – 1 of 1) sorted by relevance
516 BtRbNode *pSib; in do_delete_balancing() local521 pSib = pParent->pRight; in do_delete_balancing()522 if( pSib && !(pSib->isBlack) ){ in do_delete_balancing()523 pSib->isBlack = 1; in do_delete_balancing()526 pSib = pParent->pRight; in do_delete_balancing()528 if( !pSib ){ in do_delete_balancing()531 (!pSib->pLeft || pSib->pLeft->isBlack) && in do_delete_balancing()532 (!pSib->pRight || pSib->pRight->isBlack) ) { in do_delete_balancing()533 pSib->isBlack = 0; in do_delete_balancing()536 if( (!pSib->pRight || pSib->pRight->isBlack) ){ in do_delete_balancing()[all …]