Lines Matching refs:lut
77 struct lut *
78 lut_add(struct lut *root, void *lhs, void *rhs, lut_cmp cmp_func) in lut_add()
81 struct lut **tmp_hdl = &root, *parent = NULL, *tmp = root; in lut_add()
116 lut_lookup(struct lut *root, void *lhs, lut_cmp cmp_func) in lut_lookup()
139 lut_lookup_lhs(struct lut *root, void *lhs, lut_cmp cmp_func) in lut_lookup_lhs()
165 lut_walk(struct lut *root, lut_cb callback, void *arg) in lut_walk()
167 struct lut *tmp = root; in lut_walk()
168 struct lut *prev_child = NULL; in lut_walk()
205 lut_free(struct lut *root, lut_cb callback, void *arg) in lut_free()
207 struct lut *tmp = root; in lut_free()
208 struct lut *prev_child = NULL; in lut_free()