Lines Matching refs:uu_avl_t
297 typedef struct uu_avl uu_avl_t; typedef
360 uu_avl_t *uu_avl_create(uu_avl_pool_t *, void *_parent, uint32_t);
363 void uu_avl_destroy(uu_avl_t *); /* list must be empty */
365 size_t uu_avl_numnodes(uu_avl_t *);
367 void *uu_avl_first(uu_avl_t *);
368 void *uu_avl_last(uu_avl_t *);
370 void *uu_avl_next(uu_avl_t *, void *);
371 void *uu_avl_prev(uu_avl_t *, void *);
373 int uu_avl_walk(uu_avl_t *, uu_walk_fn_t *, void *, uint32_t);
375 uu_avl_walk_t *uu_avl_walk_start(uu_avl_t *, uint32_t);
379 void *uu_avl_find(uu_avl_t *, void *, void *, uu_avl_index_t *);
380 void uu_avl_insert(uu_avl_t *, void *, uu_avl_index_t);
382 void *uu_avl_nearest_next(uu_avl_t *, uu_avl_index_t);
383 void *uu_avl_nearest_prev(uu_avl_t *, uu_avl_index_t);
385 void *uu_avl_teardown(uu_avl_t *, void **);
387 void uu_avl_remove(uu_avl_t *, void *);