/linux/tools/lib/ |
H A D | rbtree.c | 38 * All stores to the tree structure (rb_left and rb_right) must be done using 115 tmp = gparent->rb_right; in __rb_insert() 139 tmp = parent->rb_right; in __rb_insert() 155 WRITE_ONCE(parent->rb_right, tmp); in __rb_insert() 163 tmp = node->rb_right; in __rb_insert() 176 WRITE_ONCE(gparent->rb_left, tmp); /* == parent->rb_right */ in __rb_insert() 177 WRITE_ONCE(parent->rb_right, gparent); in __rb_insert() 198 tmp = node->rb_right; in __rb_insert() 200 WRITE_ONCE(node->rb_right, parent); in __rb_insert() 211 WRITE_ONCE(gparent->rb_right, tm in __rb_insert() [all...] |
/linux/lib/ |
H A D | rbtree.c | 115 tmp = gparent->rb_right; in __rb_insert() 139 tmp = parent->rb_right; in __rb_insert() 155 WRITE_ONCE(parent->rb_right, tmp); in __rb_insert() 163 tmp = node->rb_right; in __rb_insert() 177 WRITE_ONCE(parent->rb_right, gparent); in __rb_insert() 198 tmp = node->rb_right; in __rb_insert() 200 WRITE_ONCE(node->rb_right, parent); in __rb_insert() 211 WRITE_ONCE(gparent->rb_right, tmp); /* == parent->rb_left */ in __rb_insert() 240 sibling = parent->rb_right; in ____rb_erase_color() 253 WRITE_ONCE(parent->rb_right, tmp1); in ____rb_erase_color() [all …]
|
/linux/include/linux/ |
H A D | rbtree.h | 63 node->rb_left = node->rb_right = NULL; in rb_link_node() 72 node->rb_left = node->rb_right = NULL; in rb_link_node_rcu() 177 link = &parent->rb_right; in rb_add_cached() 206 link = &parent->rb_right; in rb_add() 237 link = &parent->rb_right; in rb_find_add() 273 link = &parent->rb_right; in rb_find_add_rcu() 303 node = node->rb_right; in rb_find() 334 node = rcu_dereference_raw(node->rb_right); in rb_find_rcu() 365 node = node->rb_right; in rb_find_first()
|
H A D | rbtree_augmented.h | 77 link = &parent->rb_right; in rb_add_augmented_cached() 157 if (node->RBFIELD.rb_right) { \ 158 child = rb_entry(node->RBFIELD.rb_right, RBSTRUCT, RBFIELD); \ 202 WRITE_ONCE(parent->rb_right, new); in __rb_change_child() 215 rcu_assign_pointer(parent->rb_right, new); in __rb_change_child_rcu() 227 struct rb_node *child = node->rb_right; in __rb_erase_augmented() 271 child2 = successor->rb_right; in __rb_erase_augmented() 294 child2 = successor->rb_right; in __rb_erase_augmented() 296 WRITE_ONCE(successor->rb_right, child); in __rb_erase_augmented()
|
H A D | interval_tree_generic.h | 54 link = &parent->ITRB.rb_right; \ 107 if (node->ITRB.rb_right) { \ 108 node = rb_entry(node->ITRB.rb_right, \ 154 struct rb_node *rb = node->ITRB.rb_right, *prev; \ 178 rb = node->ITRB.rb_right; \
|
/linux/tools/include/linux/ |
H A D | rbtree.h | 25 struct rb_node *rb_right; member 70 node->rb_left = node->rb_right = NULL; in rb_link_node() 190 link = &parent->rb_right; in rb_add_cached() 217 link = &parent->rb_right; in rb_add() 248 link = &parent->rb_right; in rb_find_add() 278 node = node->rb_right; in rb_find() 309 node = node->rb_right; in rb_find_first()
|
H A D | interval_tree_generic.h | 54 link = &parent->ITRB.rb_right; \ 107 if (node->ITRB.rb_right) { \ 108 node = rb_entry(node->ITRB.rb_right, \ 154 struct rb_node *rb = node->ITRB.rb_right, *prev; \ 178 rb = node->ITRB.rb_right; \
|
H A D | rbtree_augmented.h | 133 if (node->RBFIELD.rb_right) { \ 134 child = rb_entry(node->RBFIELD.rb_right, RBSTRUCT, RBFIELD); \ 178 WRITE_ONCE(parent->rb_right, new); in __rb_change_child() 190 struct rb_node *child = node->rb_right; in __rb_erase_augmented() 234 child2 = successor->rb_right; in __rb_erase_augmented() 257 child2 = successor->rb_right; in __rb_erase_augmented() 259 WRITE_ONCE(successor->rb_right, child); in __rb_erase_augmented()
|
/linux/drivers/block/drbd/ |
H A D | drbd_interval.c | 42 new = &(*new)->rb_right; in drbd_insert_interval() 46 new = &(*new)->rb_right; in drbd_insert_interval() 81 node = node->rb_right; in drbd_contains_interval() 85 node = node->rb_right; in drbd_contains_interval() 140 node = node->rb_right; in drbd_find_overlap()
|
/linux/Documentation/translations/zh_CN/core-api/ |
H A D | rbtree.rst | 92 node = node->rb_right; 123 new = &((*new)->rb_right); 294 if (node->rb.rb_right) { 295 node = rb_entry(node->rb.rb_right, 317 if (node->rb.rb_right) { 318 subtree_last = rb_entry(node->rb.rb_right, 379 link = &parent->rb.rb_right;
|
/linux/drivers/gpu/drm/ |
H A D | drm_vma_manager.c | 155 iter = iter->rb_right; in drm_vma_offset_lookup_locked() 270 iter = &(*iter)->rb_right; in vma_node_allow() 375 iter = iter->rb_right; in drm_vma_node_revoke() 412 iter = iter->rb_right; in drm_vma_node_is_allowed()
|
/linux/mm/ |
H A D | interval_tree.c | 38 if (!prev->shared.rb.rb_right) { in vma_interval_tree_insert_after() 40 link = &prev->shared.rb.rb_right; in vma_interval_tree_insert_after() 42 parent = rb_entry(prev->shared.rb.rb_right, in vma_interval_tree_insert_after()
|
H A D | shmem_quota.c | 134 node = node->rb_right; in shmem_get_next_id() 187 n = &(*n)->rb_right; in shmem_acquire_dquot() 286 node = node->rb_right; in shmem_release_dquot()
|
/linux/block/ |
H A D | bfq-wf2q.c | 392 node = &parent->rb_right; in bfq_insert() 435 bfq_update_min(entity, node->rb_right); in bfq_update_active_node() 460 if (node == parent->rb_left && parent->rb_right) in bfq_update_active_tree() 461 bfq_update_active_node(parent->rb_right); in bfq_update_active_tree() 490 else if (node->rb_right) in bfq_active_insert() 491 node = node->rb_right; in bfq_active_insert() 548 if (!node->rb_right && !node->rb_left) in bfq_find_deepest() 550 else if (!node->rb_right) in bfq_find_deepest() 553 deepest = node->rb_right; in bfq_find_deepest() 556 if (deepest->rb_right) in bfq_find_deepest() [all …]
|
/linux/fs/btrfs/ |
H A D | misc.h | 80 node = node->rb_right; in rb_simple_search() 113 node = node->rb_right; in rb_simple_search_first() 136 p = &(*p)->rb_right; in rb_simple_insert()
|
H A D | ulist.c | 140 n = n->rb_right; in ulist_rbtree_search() 169 p = &(*p)->rb_right; in ulist_rbtree_insert()
|
/linux/tools/perf/util/ |
H A D | block-range.c | 42 p = &parent->rb_right; in block_range__find() 55 p = &node->rb_right; in rb_link_left_of_node() 62 struct rb_node **p = &node->rb_right; in rb_link_right_of_node() 91 p = &parent->rb_right; in block_range__create()
|
H A D | rblist.c | 28 p = &(*p)->rb_right; in rblist__add_node() 70 p = &(*p)->rb_right; in __rblist__findnew()
|
H A D | mem2node.c | 31 p = &(*p)->rb_right; in phys_entry__insert() 131 p = &(*p)->rb_right; in mem2node__node()
|
/linux/arch/arm/xen/ |
H A D | p2m.c | 50 link = &(*link)->rb_right; in xen_add_phys_to_mach_entry() 83 n = n->rb_right; in __pfn_to_mfn() 173 n = n->rb_right; in __set_phys_to_machine_multi()
|
/linux/net/netfilter/ |
H A D | nft_set_rbtree.c | 82 parent = rcu_dereference_raw(parent->rb_right); in __nft_rbtree_lookup() 160 parent = rcu_dereference_raw(parent->rb_right); in __nft_rbtree_get() 337 p = &parent->rb_right; in __nft_rbtree_insert() 342 p = &parent->rb_right; in __nft_rbtree_insert() 474 p = &parent->rb_right; in __nft_rbtree_insert() 478 p = &parent->rb_right; in __nft_rbtree_insert() 566 parent = parent->rb_right; in nft_rbtree_deactivate() 574 parent = parent->rb_right; in nft_rbtree_deactivate()
|
/linux/net/ceph/ |
H A D | string_table.c | 26 p = &(*p)->rb_right; in ceph_find_or_create_string() 61 p = &(*p)->rb_right; in ceph_find_or_create_string()
|
/linux/drivers/infiniband/sw/rdmavt/ |
H A D | mcast.c | 126 n = n->rb_right; in rvt_mcast_find() 175 n = &pn->rb_right; in rvt_mcast_add() 331 n = n->rb_right; in rvt_detach_mcast()
|
/linux/net/bridge/ |
H A D | br_multicast_eht.c | 59 node = node->rb_right; in br_multicast_eht_host_lookup() 95 node = node->rb_right; in br_multicast_eht_set_entry_lookup() 119 node = node->rb_right; in br_multicast_eht_set_lookup() 258 link = &((*link)->rb_right); in __eht_lookup_create_host() 304 link = &((*link)->rb_right); in __eht_lookup_create_set_entry() 355 link = &((*link)->rb_right); in __eht_lookup_create_set()
|
/linux/net/rxrpc/ |
H A D | conn_service.c | 48 p = rcu_dereference_raw(p->rb_right); in rxrpc_find_service_conn_rcu() 83 pp = &(*pp)->rb_right; in rxrpc_publish_service_conn()
|