Lines Matching +defs:tree +defs:c
165 rb_add_cached(struct rb_node *node, struct rb_root_cached *tree, in rb_add_cached()
195 rb_add(struct rb_node *node, struct rb_root *tree, in rb_add()
223 rb_find_add_cached(struct rb_node *node, struct rb_root_cached *tree, in rb_find_add_cached()
229 int c; in rb_find_add_cached() local
260 rb_find_add(struct rb_node *node, struct rb_root *tree, in rb_find_add()
265 int c; in rb_find_add() local
296 rb_find_add_rcu(struct rb_node *node, struct rb_root *tree, in rb_find_add_rcu()
301 int c; in rb_find_add_rcu() local
329 rb_find(const void *key, const struct rb_root *tree, in rb_find()
335 int c = cmp(key, node); in rb_find() local
360 rb_find_rcu(const void *key, const struct rb_root *tree, in rb_find_rcu()
366 int c = cmp(key, node); in rb_find_rcu() local
388 rb_find_first(const void *key, const struct rb_root *tree, in rb_find_first()
395 int c = cmp(key, node); in rb_find_first() local
434 #define rb_for_each(node, key, tree, cmp) \ argument