Lines Matching defs:avl
580 * the deadlist's avl tree, freeing the entry's bpobj and adjusting the
651 * Return the first entry in deadlist's avl tree
667 * Return the last entry in deadlist's avl tree
1016 avl_tree_t *avl;
1036 avl_tree_t *avl = lia->avl;
1046 livelist_entry_t *found = avl_find(avl, &node, NULL);
1060 avl_add(avl, e);
1079 avl_remove(avl, found);
1095 avl_tree_t avl;
1096 avl_create(&avl, livelist_compare, sizeof (livelist_entry_t),
1101 .avl = &avl,
1106 VERIFY(err != 0 || avl_numnodes(&avl) == 0);
1110 while ((le = avl_destroy_nodes(&avl, &cookie)) != NULL) {
1113 avl_destroy(&avl);