Searched refs:avl_nearest (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Davl.h92 * than a given value with avl_nearest().
127 * Direction constants used for avl_nearest().
163 * "where" for use with avl_insert() or avl_nearest().
166 * where - position for use with avl_nearest() or avl_insert(), may be NULL
233 * less = avl_nearest(tree, where, AVL_BEFORE);
235 extern void *avl_nearest(avl_tree_t *tree, avl_index_t where, int direction);
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_rlock.c162 rl = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
166 rl = (rl_t *)avl_nearest(tree, where, AVL_BEFORE);
301 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
370 prev = (rl_t *)avl_nearest(tree, where, AVL_BEFORE);
395 next = (rl_t *)avl_nearest(tree, where, AVL_AFTER);
H A Ddsl_deadlist.c237 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
400 avl_nearest(&dl->dl_tree, where, AVL_AFTER) == NULL);
442 dle = avl_nearest(&dl->dl_tree, where, AVL_BEFORE);
511 dle = avl_nearest(&dl->dl_tree, where, AVL_AFTER);
H A Drange_tree.c188 rs_before = avl_nearest(&rt->rt_root, where, AVL_BEFORE);
189 rs_after = avl_nearest(&rt->rt_root, where, AVL_AFTER);
H A Dtrim_map.c234 ts_before = avl_nearest(&tm->tm_queued_frees, where, AVL_BEFORE);
235 ts_after = avl_nearest(&tm->tm_queued_frees, where, AVL_AFTER);
H A Dvdev_cache.c361 ve = avl_nearest(&vc->vc_offset_tree, where, AVL_AFTER);
H A Dvdev_queue.c803 zio = avl_nearest(tree, idx, AVL_AFTER);
H A Dzap_micro.c309 mze = avl_nearest(avl, idx, AVL_AFTER);
1301 mze = avl_nearest(&zc->zc_zap->zap_m.zap_avl,
H A Dmetaslab.c1057 rs = avl_nearest(t, where, AVL_AFTER);
1241 rs = avl_nearest(t, where, AVL_AFTER);
H A Ddbuf.c920 db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER);
938 db = avl_nearest(&dn->dn_dbufs, where, AVL_AFTER);
/freebsd-10.3-release/cddl/contrib/opensolaris/lib/libuutil/common/
H A Duu_avl.c534 return (avl_nearest(&ap->ua_tree, INDEX_DECODE(idx), AVL_AFTER));
544 return (avl_nearest(&ap->ua_tree, INDEX_DECODE(idx), AVL_BEFORE));
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/common/avl/
H A Davl.c226 avl_nearest(avl_tree_t *tree, avl_index_t where, int direction) function

Completed in 220 milliseconds