Lines Matching refs:p_grand_uncle
297 cl_map_item_t *p_grand_uncle; in __cl_map_ins_bal() local
305 p_grand_uncle = p_item->p_up->p_up->p_right; in __cl_map_ins_bal()
306 CL_ASSERT(p_grand_uncle); in __cl_map_ins_bal()
307 if (p_grand_uncle->color == CL_MAP_RED) { in __cl_map_ins_bal()
308 p_grand_uncle->color = CL_MAP_BLACK; in __cl_map_ins_bal()
323 p_grand_uncle = p_item->p_up->p_up->p_left; in __cl_map_ins_bal()
324 CL_ASSERT(p_grand_uncle); in __cl_map_ins_bal()
325 if (p_grand_uncle->color == CL_MAP_RED) { in __cl_map_ins_bal()
326 p_grand_uncle->color = CL_MAP_BLACK; in __cl_map_ins_bal()
1233 cl_fmap_item_t *p_grand_uncle; in __cl_fmap_ins_bal() local
1241 p_grand_uncle = p_item->p_up->p_up->p_right; in __cl_fmap_ins_bal()
1242 CL_ASSERT(p_grand_uncle); in __cl_fmap_ins_bal()
1243 if (p_grand_uncle->color == CL_MAP_RED) { in __cl_fmap_ins_bal()
1244 p_grand_uncle->color = CL_MAP_BLACK; in __cl_fmap_ins_bal()
1259 p_grand_uncle = p_item->p_up->p_up->p_left; in __cl_fmap_ins_bal()
1260 CL_ASSERT(p_grand_uncle); in __cl_fmap_ins_bal()
1261 if (p_grand_uncle->color == CL_MAP_RED) { in __cl_fmap_ins_bal()
1262 p_grand_uncle->color = CL_MAP_BLACK; in __cl_fmap_ins_bal()