Lines Matching full:uncle
564 dnode_t *parent = nil, *uncle, *grandpa;
606 uncle = grandpa->right;
607 if (uncle->color == dnode_red) { /* red parent, red uncle */
609 uncle->color = dnode_black;
613 } else { /* red parent, black uncle */
626 uncle = grandpa->left;
627 if (uncle->color == dnode_red) {
629 uncle->color = dnode_black;