Home | History | Annotate | Download | only in wtf

Lines Matching refs:tree_

175             tree_ = &tree;
178 handle h = tree_->abs.root;
222 tree_ = &tree;
224 handle h = tree_->abs.root;
240 tree_ = &tree;
242 handle h = tree_->abs.root;
261 return depth == 0 ? tree_->abs.root : path_h[depth - 1];
322 AVLTree *tree_;
336 int cmp_k_n(key k, handle h) { return tree_->abs.compare_key_node(k, h); }
337 int cmp_n_n(handle h1, handle h2) { return tree_->abs.compare_node_node(h1, h2); }
338 handle get_lt(handle h) { return tree_->abs.get_less(h); }
339 handle get_gt(handle h) { return tree_->abs.get_greater(h); }
340 handle null() { return tree_->abs.null(); }