Lines Matching full:depth
33 static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask, in ipchain__fprintf_graph_line() argument
39 for (i = 0; i < depth; i++) in ipchain__fprintf_graph_line()
52 int depth, int depth_mask, int period, in ipchain__fprintf_graph() argument
62 for (i = 0; i < depth; i++) { in ipchain__fprintf_graph()
67 if (!period && i == depth - 1) { in ipchain__fprintf_graph()
110 u64 total_samples, int depth, in __callchain__fprintf_graph() argument
136 * The depth mask manages the output of pipes that show in __callchain__fprintf_graph()
137 * the depth. We don't want to keep the pipes of the current in __callchain__fprintf_graph()
138 * level for the last child of this depth. in __callchain__fprintf_graph()
144 new_depth_mask &= ~(1 << (depth - 1)); in __callchain__fprintf_graph()
147 * But we keep the older depth mask for the line separator in __callchain__fprintf_graph()
150 ret += ipchain__fprintf_graph_line(fp, depth, depth_mask, in __callchain__fprintf_graph()
154 ret += ipchain__fprintf_graph(fp, child, chain, depth, in __callchain__fprintf_graph()
166 depth + 1, in __callchain__fprintf_graph()
167 new_depth_mask | (1 << depth), in __callchain__fprintf_graph()
189 new_depth_mask &= ~(1 << (depth - 1)); in __callchain__fprintf_graph()
190 ret += ipchain__fprintf_graph(fp, &rem_node, &rem_hits, depth, in __callchain__fprintf_graph()
473 ret = scnprintf(hpp->buf, hpp->size, "%*s", he->depth * HIERARCHY_INDENT, ""); in hist_entry__hierarchy_fprintf()
637 int depth; in hists__fprintf_hierarchy_headers() local
646 /* preserve max indent depth for column headers */ in hists__fprintf_hierarchy_headers()
682 /* preserve max indent depth for initial dots */ in hists__fprintf_hierarchy_headers()
699 depth = 0; in hists__fprintf_hierarchy_headers()
702 width = depth * HIERARCHY_INDENT; in hists__fprintf_hierarchy_headers()
718 depth++; in hists__fprintf_hierarchy_headers()
878 int depth = hists->nr_hpp_node + h->depth + 1; in hists__fprintf() local
880 print_hierarchy_indent(sep, depth, " ", fp); in hists__fprintf()