Searched refs:st_lentree (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/cmd/sgs/tools/common/ |
H A D | string_table.c | 176 if ((stp->st_lentree = calloc(sizeof (*stp->st_lentree), 1)) == NULL) in st_new() 179 avl_create(stp->st_lentree, &avl_len_compare, sizeof (LenNode), in st_new() 227 if ((lnp = avl_find(stp->st_lentree, &ln, &where)) == NULL) { in st_insert() 231 avl_insert(stp->st_lentree, lnp, where); in st_insert() 283 if ((lnp = avl_find(stp->st_lentree, &ln, 0)) != NULL) { in st_delstring() 579 if ((lnp = avl_first(stp->st_lentree)) == NULL) { in st_getstrtab_sz() 584 if (avl_numnodes(stp->st_lentree) == 0) { in st_getstrtab_sz() 624 lnp = AVL_NEXT(stp->st_lentree, lnp); in st_getstrtab_sz() 635 while ((lnp = avl_destroy_nodes(stp->st_lentree, in st_getstrtab_sz() 638 avl_destroy(stp->st_lentree); in st_getstrtab_sz() [all …]
|
/titanic_41/usr/src/cmd/sgs/include/ |
H A D | _string_table.h | 101 avl_tree_t *st_lentree; /* AVL tree of string lengths */ member
|