Lines Matching refs:__entry
40 RB_ENTRY(rb_node) __entry;
42 #define rb_left __entry.rbe_link[_RB_L]
43 #define rb_right __entry.rbe_link[_RB_R]
64 RB_PROTOTYPE(linux_root, rb_node, __entry, panic_cmp);
66 #define rb_parent(r) RB_PARENT(r, __entry)
72 #define RB_EMPTY_NODE(node) (RB_PARENT(node, __entry) == node)
73 #define RB_CLEAR_NODE(node) RB_SET_PARENT(node, node, __entry)
94 if (RB_LEFT(node, __entry))
95 node = RB_LEFT(node, __entry);
97 node = RB_RIGHT(node, __entry);
106 RB_PARENT(__DECONST(struct rb_node *, node), __entry);
109 (node == RB_LEFT(parent, __entry)) &&
110 (RB_RIGHT(parent, __entry)))
111 return (__rb_deepest_left(RB_RIGHT(parent, __entry)));
127 RB_SET(node, parent, __entry);
137 victim, new, __entry);
138 if (RB_LEFT(victim, __entry))
139 RB_SET_PARENT(RB_LEFT(victim, __entry), new, __entry);
140 if (RB_RIGHT(victim, __entry))
141 RB_SET_PARENT(RB_RIGHT(victim, __entry), new, __entry);
189 link = &RB_LEFT(parent, __entry);
191 link = &RB_RIGHT(parent, __entry);