Searched refs:rbtree (Results 1 – 25 of 28) sorted by relevance
12
/Linux-v6.6/Documentation/core-api/ |
D | rbtree.rst | 2 Red-black Trees (rbtree) in Linux 29 The high-resolution timer code uses an rbtree to organize outstanding 35 This document covers use of the Linux rbtree implementation. For more 47 Linux's rbtree implementation lives in the file "lib/rbtree.c". To use it, 48 "#include <linux/rbtree.h>". 50 The Linux rbtree implementation is optimized for speed, and thus has one 56 which call the provided rbtree functions. Locking is also left up to the 57 user of the rbtree code. 59 Creating a new rbtree 62 Data nodes in an rbtree tree are structures containing a struct rb_node member:: [all …]
|
D | index.rst | 43 rbtree
|
/Linux-v6.6/tools/testing/selftests/bpf/prog_tests/ |
D | rbtree.c | 19 struct rbtree *skel; in test_rbtree_add_nodes() 41 struct rbtree *skel; in test_rbtree_add_and_remove() 63 struct rbtree *skel; in test_rbtree_first_and_remove() 87 struct rbtree *skel; in test_rbtree_api_release_aliasing()
|
/Linux-v6.6/Documentation/translations/zh_CN/core-api/ |
D | rbtree.rst | 4 :Original: Documentation/core-api/rbtree.rst 11 Linux中的红黑树(rbtree) 47 Linux的红黑树实现在文件“lib/rbtree.c”中。要使用它,需要“#include <linux/rbtree.h>”。 219 实现增强型红黑树操作的C文件必须包含<linux/rbtree_augmented.h>而不是<linux/rbtree.h>。
|
D | index.rst | 46 rbtree
|
/Linux-v6.6/tools/bpf/resolve_btfids/ |
D | Build | 4 resolve_btfids-y += rbtree.o
|
/Linux-v6.6/Documentation/bpf/ |
D | graph_ds_impl.rst | 6 structures (linked_list, rbtree), with particular focus on the verifier's 35 Two such data structures - linked_list and rbtree - have many verification 73 The "root" type for both linked_list and rbtree expects to be in a map_value 201 Any reference to a node that is in an rbtree _must_ be non-owning, since 203 that isn't in rbtree _must_ be owning. This results in a nice property: 247 a node which is not in an rbtree. Statement 5 will try to remove a node which
|
/Linux-v6.6/scripts/gdb/ |
D | vmlinux-gdb.py | 37 import linux.rbtree
|
/Linux-v6.6/scripts/gdb/linux/ |
D | timerlist.py | 10 from linux import rbtree 50 curr = rbtree.rb_next(curr)
|
/Linux-v6.6/tools/perf/ |
D | MANIFEST | 13 tools/lib/rbtree.c
|
/Linux-v6.6/tools/objtool/ |
D | Build | 31 $(OUTPUT)librbtree.o: ../lib/rbtree.c FORCE
|
/Linux-v6.6/drivers/base/regmap/ |
D | Makefile | 6 obj-$(CONFIG_REGMAP) += regcache-rbtree.o regcache-flat.o regcache-maple.o
|
D | regcache-rbtree.c | 176 DEFINE_SHOW_ATTRIBUTE(rbtree);
|
/Linux-v6.6/tools/perf/util/ |
D | python-ext-sources | 34 ../lib/rbtree.c
|
D | Build | 37 perf-y += rbtree.o 366 $(OUTPUT)util/rbtree.o: ../lib/rbtree.c FORCE
|
/Linux-v6.6/Documentation/locking/ |
D | rt-mutex-design.rst | 106 the task is blocked on. It also has rbtree node structures to 107 place the task in the waiters rbtree of a mutex as well as the 108 pi_waiters rbtree of a mutex owner task (described below). 200 mutex has a rbtree to store these waiters by priority. This tree is protected 208 To keep track of the PI chains, each process has its own PI rbtree. This is 218 This tree is stored in the task structure of a process as a rbtree called 408 should be at, but the rbtree nodes of the task's waiter have not been updated 474 to the mutex. The rbtree node of waiter are initialized to the processes
|
/Linux-v6.6/Documentation/timers/ |
D | hrtimers.rst | 95 file systems. The rbtree is solely used for time sorted ordering, while 97 queued timers, without having to walk the rbtree. 113 be set without having to touch the rbtree. This also makes the handling
|
/Linux-v6.6/Documentation/scheduler/ |
D | sched-design-CFS.rst | 57 runqueues, but it uses a time-ordered rbtree to build a "timeline" of future 71 CFS maintains a time-ordered rbtree, where all runnable tasks are sorted by the 82 becomes the "leftmost task" of the time-ordered rbtree it maintains (plus a
|
/Linux-v6.6/Documentation/block/ |
D | deadline-iosched.rst | 69 rbtree front sector lookup when the io scheduler merge function is called.
|
/Linux-v6.6/tools/testing/selftests/hid/ |
D | Makefile | 159 $(TOOLSDIR)/lib/rbtree.c \
|
/Linux-v6.6/Documentation/dev-tools/ |
D | kmemleak.rst | 86 information like size and stack trace, are stored in a rbtree. 102 the values against the addresses stored in the rbtree. If
|
/Linux-v6.6/tools/testing/selftests/kvm/ |
D | Makefile | 27 LIBKVM += lib/rbtree.c
|
/Linux-v6.6/lib/ |
D | Kconfig | 477 augmented rbtree. 481 Documentation/core-api/rbtree.rst
|
D | Makefile | 31 rbtree.o radix-tree.o timerqueue.o xarray.o \
|
/Linux-v6.6/drivers/block/xen-blkback/ |
D | blkback.c | 150 #define foreach_grant_safe(pos, n, rbtree, node) \ argument 151 for ((pos) = container_of(rb_first((rbtree)), typeof(*(pos)), node), \
|
12