Searched refs:st_lentree (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/sgs/tools/common/
H A Dstring_table.c178 if ((stp->st_lentree = calloc(sizeof (avl_tree_t), 1)) == NULL)
181 avl_create(stp->st_lentree, &avl_len_compare, sizeof (LenNode),
229 if ((lnp = avl_find(stp->st_lentree, &ln, &where)) == NULL) {
233 avl_insert(stp->st_lentree, lnp, where);
284 if ((lnp = avl_find(stp->st_lentree, &ln, 0)) != NULL) {
580 if ((lnp = avl_first(stp->st_lentree)) == NULL) {
585 if (avl_numnodes(stp->st_lentree) == 0) {
625 lnp = AVL_NEXT(stp->st_lentree, lnp);
636 while ((lnp = avl_destroy_nodes(stp->st_lentree,
639 avl_destroy(stp->st_lentree);
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/sgs/include/
H A D_string_table.h101 avl_tree_t *st_lentree; /* AVL tree of string lengths */ member in struct:str_tbl

Completed in 184 milliseconds