Lines Matching refs:cnode
711 struct callchain_list *cnode)
717 match = match_chain_strings(cnode->srcline, node->srcline);
723 if (node->ms.sym && cnode->ms.sym) {
730 if (cnode->ms.sym->inlined || node->ms.sym->inlined) {
731 match = match_chain_strings(cnode->ms.sym->name,
736 match = match_chain_dso_addresses(cnode->ms.map, cnode->ms.sym->start,
745 match = match_chain_dso_addresses(cnode->ms.map, cnode->ip, node->ms.map, node->ip);
750 cnode->branch_count++;
756 cnode->brtype_stat.branch_to = true;
759 cnode->predicted_count++;
762 cnode->abort_count++;
764 branch_type_count(&cnode->brtype_stat,
772 cnode->brtype_stat.branch_to = false;
773 cnode->cycles_count += node->branch_flags.cycles;
774 cnode->iter_count += node->nr_loop_iter;
775 cnode->iter_cycles += node->iter_cycles;
776 cnode->from_count++;
824 struct callchain_list *cnode;
844 cnode = list_first_entry(&first->val, struct callchain_list,
847 if (match_chain(node, cnode) == MATCH_LT)
918 struct callchain_list *cnode;
930 list_for_each_entry(cnode, &root->val, list) {
937 cmp = match_chain(node, cnode);
956 if (split_add_child(root, cursor, cnode, start, matches,
1703 s64 callchain_avg_cycles(struct callchain_node *cnode)
1708 list_for_each_entry(chain, &cnode->val, list) {