Home | History | Annotate | Download | only in util

Lines Matching defs:node

36 	struct callchain_node	node;
93 INIT_LIST_HEAD(&root->node.siblings);
94 INIT_LIST_HEAD(&root->node.children);
95 INIT_LIST_HEAD(&root->node.val);
97 root->node.parent = NULL;
98 root->node.hit = 0;
99 root->node.children_hit = 0;
103 static inline u64 callchain_cumul_hits(struct callchain_node *node)
105 return node->hit + node->children_hit;