Lines Matching refs:cnode
720 struct callchain_list *cnode)
726 match = match_chain_strings(cnode->srcline, node->srcline);
732 if (node->ms.sym && cnode->ms.sym) {
739 if (cnode->ms.sym->inlined || node->ms.sym->inlined) {
740 match = match_chain_strings(cnode->ms.sym->name,
745 match = match_chain_dso_addresses(cnode->ms.map, cnode->ms.sym->start,
754 match = match_chain_dso_addresses(cnode->ms.map, cnode->ip, node->ms.map, node->ip);
759 cnode->branch_count++;
765 cnode->brtype_stat.branch_to = true;
768 cnode->predicted_count++;
771 cnode->abort_count++;
773 branch_type_count(&cnode->brtype_stat,
781 cnode->brtype_stat.branch_to = false;
782 cnode->cycles_count += node->branch_flags.cycles;
783 cnode->iter_count += node->nr_loop_iter;
784 cnode->iter_cycles += node->iter_cycles;
785 cnode->from_count++;
833 struct callchain_list *cnode;
853 cnode = list_first_entry(&first->val, struct callchain_list,
856 if (match_chain(node, cnode) == MATCH_LT)
927 struct callchain_list *cnode;
939 list_for_each_entry(cnode, &root->val, list) {
946 cmp = match_chain(node, cnode);
965 if (split_add_child(root, cursor, cnode, start, matches,
1772 s64 callchain_avg_cycles(struct callchain_node *cnode)
1777 list_for_each_entry(chain, &cnode->val, list) {