Searched refs:rb_root (Results 1 – 25 of 41) sorted by relevance
12
/include/linux/ |
D | rbtree_types.h | 12 struct rb_root { struct 27 struct rb_root rb_root; argument 31 #define RB_ROOT (struct rb_root) { NULL, }
|
D | rbtree.h | 39 extern void rb_insert_color(struct rb_node *, struct rb_root *); 40 extern void rb_erase(struct rb_node *, struct rb_root *); 46 extern struct rb_node *rb_first(const struct rb_root *); 47 extern struct rb_node *rb_last(const struct rb_root *); 50 extern struct rb_node *rb_first_postorder(const struct rb_root *); 55 struct rb_root *root); 57 struct rb_root *root); 114 rb_insert_color(node, &root->rb_root); in rb_insert_color_cached() 126 rb_erase(node, &root->rb_root); in rb_erase_cached() 137 rb_replace_node(victim, new, &root->rb_root); in rb_replace_node_cached() [all …]
|
D | timerqueue.h | 15 struct rb_root_cached rb_root; member 36 struct rb_node *leftmost = rb_first_cached(&head->rb_root); in timerqueue_getnext() 58 head->rb_root = RB_ROOT_CACHED; in timerqueue_init_head()
|
D | rbtree_augmented.h | 33 extern void __rb_insert_augmented(struct rb_node *node, struct rb_root *root, 47 rb_insert_augmented(struct rb_node *node, struct rb_root *root, in rb_insert_augmented() 60 rb_insert_augmented(node, &root->rb_root, augment); in rb_insert_augmented_cached() 170 struct rb_node *parent, struct rb_root *root) in __rb_change_child() 183 struct rb_node *parent, struct rb_root *root) in __rb_change_child_rcu() 194 extern void __rb_erase_color(struct rb_node *parent, struct rb_root *root, 198 __rb_erase_augmented(struct rb_node *node, struct rb_root *root, in __rb_erase_augmented() 300 rb_erase_augmented(struct rb_node *node, struct rb_root *root, in rb_erase_augmented() 314 rb_erase_augmented(node, &root->rb_root, augment); in rb_erase_augmented_cached()
|
D | interval_tree_generic.h | 41 struct rb_node **link = &root->rb_root.rb_node, *rb_parent = NULL; \ 124 if (!root->rb_root.rb_node) \ 140 node = rb_entry(root->rb_root.rb_node, ITSTRUCT, ITRB); \
|
D | elevator.h | 160 extern void elv_rb_add(struct rb_root *, struct request *); 161 extern void elv_rb_del(struct rb_root *, struct request *); 162 extern struct request *elv_rb_find(struct rb_root *, sector_t);
|
D | rbtree_latch.h | 46 struct rb_root tree[2]; 79 struct rb_root *root = <r->tree[idx]; in __lt_insert()
|
D | pktcdvd.h | 184 struct rb_root bio_queue; /* Work queue of bios we need to handle */
|
D | iova.h | 70 struct rb_root rbroot; /* iova domain rbtree root */
|
D | nfs_fs_sb.h | 233 struct rb_root state_owners;
|
D | rmap.h | 64 struct rb_root_cached rb_root; member
|
D | sysctl.h | 164 struct rb_root root;
|
/include/net/netns/ |
D | nexthop.h | 12 struct rb_root rb_root; /* tree of nexthops by id */ member
|
/include/linux/ceph/ |
D | osdmap.h | 182 struct rb_root pg_temp; 183 struct rb_root primary_temp; 186 struct rb_root pg_upmap; /* PG := raw set */ 187 struct rb_root pg_upmap_items; /* from -> to within raw set */ 191 struct rb_root pg_pools; 326 int ceph_parse_crush_location(char *crush_location, struct rb_root *locs); 327 int ceph_compare_crush_locs(struct rb_root *locs1, struct rb_root *locs2); 328 void ceph_clear_crush_locs(struct rb_root *locs); 331 struct rb_root *locs);
|
D | osd_client.h | 40 struct rb_root o_requests; 41 struct rb_root o_linger_requests; 42 struct rb_root o_backoff_mappings; 43 struct rb_root o_backoffs_by_id; 307 struct rb_root backoffs; 353 struct rb_root osds; /* osds */ 360 struct rb_root linger_requests; /* lingering requests */ 361 struct rb_root map_checks; 362 struct rb_root linger_map_checks;
|
D | libceph.h | 68 struct rb_root crush_locs; 200 static bool __insert_##name(struct rb_root *root, type *t) \ 225 static void __maybe_unused insert_##name(struct rb_root *root, type *t) \ 230 static void erase_##name(struct rb_root *root, type *t) \ 243 static type *lookup_##name(struct rb_root *root, lookup_param_type key) \
|
D | mon_client.h | 91 struct rb_root generic_request_tree;
|
/include/linux/crush/ |
D | crush.h | 305 struct rb_root type_names; 308 struct rb_root names; 311 struct rb_root choose_args; 356 void clear_crush_names(struct rb_root *root);
|
/include/drm/ |
D | drm_prime.h | 48 struct rb_root dmabufs; 49 struct rb_root handles;
|
D | drm_vma_manager.h | 55 struct rb_root vm_files;
|
/include/net/ |
D | inetpeer.h | 62 struct rb_root rb_root; member
|
D | inet_frag.h | 87 struct rb_root rb_fragments; 137 unsigned int inet_frag_rbtree_purge(struct rb_root *root);
|
D | garp.h | 107 struct rb_root gid;
|
D | mrp.h | 121 struct rb_root mad;
|
/include/xen/arm/ |
D | page.h | 44 extern struct rb_root phys_to_mach;
|
12