Lines Matching full:depth
37 static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask, in ipchain__fprintf_graph_line() argument
43 for (i = 0; i < depth; i++) in ipchain__fprintf_graph_line()
56 int depth, int depth_mask, int period, in ipchain__fprintf_graph() argument
66 for (i = 0; i < depth; i++) { in ipchain__fprintf_graph()
71 if (!period && i == depth - 1) { in ipchain__fprintf_graph()
114 u64 total_samples, int depth, in __callchain__fprintf_graph() argument
140 * The depth mask manages the output of pipes that show in __callchain__fprintf_graph()
141 * the depth. We don't want to keep the pipes of the current in __callchain__fprintf_graph()
142 * level for the last child of this depth. in __callchain__fprintf_graph()
148 new_depth_mask &= ~(1 << (depth - 1)); in __callchain__fprintf_graph()
151 * But we keep the older depth mask for the line separator in __callchain__fprintf_graph()
154 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask, in __callchain__fprintf_graph()
158 ret += ipchain__fprintf_graph(fp, child, chain, depth, in __callchain__fprintf_graph()
170 depth + 1, in __callchain__fprintf_graph()
171 new_depth_mask | (1 << depth), in __callchain__fprintf_graph()
193 new_depth_mask &= ~(1 << (depth - 1)); in __callchain__fprintf_graph()
194 ret += ipchain__fprintf_graph(fp, &rem_node, &rem_hits, depth, in __callchain__fprintf_graph()
477 ret = scnprintf(hpp->buf, hpp->size, "%*s", he->depth * HIERARCHY_INDENT, ""); in hist_entry__hierarchy_fprintf()
641 int depth; in hists__fprintf_hierarchy_headers() local
660 /* preserve max indent depth for column headers */ in hists__fprintf_hierarchy_headers()
699 /* preserve max indent depth for initial dots */ in hists__fprintf_hierarchy_headers()
716 depth = 0; in hists__fprintf_hierarchy_headers()
719 width = depth * HIERARCHY_INDENT; in hists__fprintf_hierarchy_headers()
735 depth++; in hists__fprintf_hierarchy_headers()
895 int depth = hists->nr_hpp_node + h->depth + 1; in hists__fprintf() local
897 print_hierarchy_indent(sep, depth, " ", fp); in hists__fprintf()