Home | History | Annotate | Download | only in netinet

Lines Matching refs:tmp2

103 	_t *parent, *tmp1, *tmp2;					\
107 tmp2 = tmp1->_f.left; \
108 node->_f.right = tmp2; \
109 if (tmp2 != & _n##_rb_zero) \
110 tmp2->_f.parent = node; \
125 _t *parent, *tmp1, *tmp2; \
129 tmp2 = tmp1->_f.right; \
130 node->_f.left = tmp2; \
131 if (tmp2 != &_n##_rb_zero) \
132 tmp2->_f.parent = node; \
232 _t *tmp2 = tmp->_f.left; \
234 if (tmp2 != &_n##_rb_zero) \
235 tmp2->_f.colour = C_BLACK;\
265 _t *tmp2 = tmp->_f.right; \
267 if (tmp2 != &_n##_rb_zero) \
268 tmp2->_f.colour = C_BLACK;\