Home | History | Annotate | Download | only in gpu

Lines Matching refs:c1

802         // child and c1 be its non-implicit child. c1 must be black because
804 // of x rooted at c0 and c1 will have different black-heights.
806 // So we know x is black and has one implicit black child, c0. c1
807 // must be red, otherwise the subtree at c1 will have a different
810 // replace x with c1, making c1 black, preserves all red-black tree
812 Node* c1 = x->fChildren[c];
815 fFirst = c1;
822 fLast = c1;
828 c1->fParent = p;
829 p->fChildren[pc] = c1;
830 c1->fColor = kBlack_Color;