Lines Matching refs:left
52 struct rb_node *left;
108 * \param insert_left If true, the new node will be the left child of
131 bool left = false;
134 left = cmp(x, node) < 0;
135 if (left)
136 x = x->left;
141 rb_tree_insert_at(T, y, node, left);
174 x = x->left;
212 x = x->left;
222 /** Get the first (left-most) node in the tree or NULL */
231 /** Get the next previous (to the left) in the tree or NULL */