RB_COLOR          323 sys/tree.h     	RB_COLOR(elm, field) = RB_RED;					\
RB_COLOR          327 sys/tree.h     	RB_COLOR(black, field) = RB_BLACK;				\
RB_COLOR          328 sys/tree.h     	RB_COLOR(red, field) = RB_RED;					\
RB_COLOR          395 sys/tree.h     	    RB_COLOR(parent, field) == RB_RED) {			\
RB_COLOR          399 sys/tree.h     			if (tmp && RB_COLOR(tmp, field) == RB_RED) {	\
RB_COLOR          400 sys/tree.h     				RB_COLOR(tmp, field) = RB_BLACK;	\
RB_COLOR          415 sys/tree.h     			if (tmp && RB_COLOR(tmp, field) == RB_RED) {	\
RB_COLOR          416 sys/tree.h     				RB_COLOR(tmp, field) = RB_BLACK;	\
RB_COLOR          431 sys/tree.h     	RB_COLOR(head->rbh_root, field) = RB_BLACK;			\
RB_COLOR          438 sys/tree.h     	while ((elm == NULL || RB_COLOR(elm, field) == RB_BLACK) &&	\
RB_COLOR          442 sys/tree.h     			if (RB_COLOR(tmp, field) == RB_RED) {		\
RB_COLOR          448 sys/tree.h     			    RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\
RB_COLOR          450 sys/tree.h     			    RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\
RB_COLOR          451 sys/tree.h     				RB_COLOR(tmp, field) = RB_RED;		\
RB_COLOR          456 sys/tree.h     				    RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK) {\
RB_COLOR          459 sys/tree.h     						RB_COLOR(oleft, field) = RB_BLACK;\
RB_COLOR          460 sys/tree.h     					RB_COLOR(tmp, field) = RB_RED;	\
RB_COLOR          464 sys/tree.h     				RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
RB_COLOR          465 sys/tree.h     				RB_COLOR(parent, field) = RB_BLACK;	\
RB_COLOR          467 sys/tree.h     					RB_COLOR(RB_RIGHT(tmp, field), field) = RB_BLACK;\
RB_COLOR          474 sys/tree.h     			if (RB_COLOR(tmp, field) == RB_RED) {		\
RB_COLOR          480 sys/tree.h     			    RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) &&\
RB_COLOR          482 sys/tree.h     			    RB_COLOR(RB_RIGHT(tmp, field), field) == RB_BLACK)) {\
RB_COLOR          483 sys/tree.h     				RB_COLOR(tmp, field) = RB_RED;		\
RB_COLOR          488 sys/tree.h     				    RB_COLOR(RB_LEFT(tmp, field), field) == RB_BLACK) {\
RB_COLOR          491 sys/tree.h     						RB_COLOR(oright, field) = RB_BLACK;\
RB_COLOR          492 sys/tree.h     					RB_COLOR(tmp, field) = RB_RED;	\
RB_COLOR          496 sys/tree.h     				RB_COLOR(tmp, field) = RB_COLOR(parent, field);\
RB_COLOR          497 sys/tree.h     				RB_COLOR(parent, field) = RB_BLACK;	\
RB_COLOR          499 sys/tree.h     					RB_COLOR(RB_LEFT(tmp, field), field) = RB_BLACK;\
RB_COLOR          507 sys/tree.h     		RB_COLOR(elm, field) = RB_BLACK;			\
RB_COLOR          526 sys/tree.h     		color = RB_COLOR(elm, field);				\
RB_COLOR          560 sys/tree.h     	color = RB_COLOR(elm, field);					\