Lines Matching full:rb
144 struct bpf_rb_node *rb; in __read_from_tree() local
150 rb = bpf_rbtree_first(root); in __read_from_tree()
151 if (!rb) { in __read_from_tree()
156 n = container_of(rb, struct node_data, r); in __read_from_tree()
164 rb = bpf_rbtree_remove(root, rb); in __read_from_tree()
166 if (!rb) in __read_from_tree()
168 n = container_of(rb, struct node_data, r); in __read_from_tree()
509 struct bpf_rb_node *rb; in BPF_PROG() local
519 rb = bpf_rbtree_first(&root); in BPF_PROG()
520 if (!rb) in BPF_PROG()
523 rb = bpf_rbtree_remove(&root, rb); in BPF_PROG()
524 if (!rb) in BPF_PROG()
527 m = container_of(rb, struct node_data, r); in BPF_PROG()
543 struct bpf_rb_node *rb; in BPF_PROG() local
553 rb = bpf_rbtree_first(&root); in BPF_PROG()
554 if (!rb) in BPF_PROG()
557 rb = bpf_rbtree_remove(&root, rb); in BPF_PROG()
558 if (!rb) in BPF_PROG()
561 m = container_of(rb, struct node_data, r); in BPF_PROG()