Lines Matching full:hpp

50 /* Diff command specific HPP columns. */
1311 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_baseline() argument
1320 return percent_color_snprintf(hpp->buf, hpp->size, in hpp__color_baseline()
1323 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_baseline()
1340 struct perf_hpp *hpp, int width) in cycles_printf() argument
1351 hpp->skip = true; in cycles_printf()
1380 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); in cycles_printf()
1384 struct perf_hpp *hpp, struct hist_entry *he, in __hpp__color_compare() argument
1400 hpp->skip = true; in __hpp__color_compare()
1414 return percent_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1425 return value_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1436 return color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1440 return cycles_printf(he, pair, hpp, dfmt->header_width); in __hpp__color_compare()
1445 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1448 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1453 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_delta() argument
1455 return __hpp__color_compare(fmt, hpp, he, COMPUTE_DELTA); in hpp__color_delta()
1459 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_ratio() argument
1461 return __hpp__color_compare(fmt, hpp, he, COMPUTE_RATIO); in hpp__color_ratio()
1465 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_wdiff() argument
1467 return __hpp__color_compare(fmt, hpp, he, COMPUTE_WEIGHTED_DIFF); in hpp__color_wdiff()
1471 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles() argument
1473 return __hpp__color_compare(fmt, hpp, he, COMPUTE_CYCLES); in hpp__color_cycles()
1504 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles_hist() argument
1518 hpp->skip = true; in hpp__color_cycles_hist()
1527 hpp->skip = true; in hpp__color_cycles_hist()
1544 ret = scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1548 ret += scnprintf(hpp->buf + ret, hpp->size - ret, in hpp__color_cycles_hist()
1556 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1655 static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp, in hpp__entry_global() argument
1665 return scnprintf(hpp->buf, hpp->size, "%s", buf); in hpp__entry_global()
1667 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__entry_global()
1671 static int hpp__header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, in hpp__header() argument
1680 return scnprintf(hpp->buf, hpp->size, dfmt->header); in hpp__header()
1684 struct perf_hpp *hpp __maybe_unused, in hpp__width()
1706 /* Only our defined HPP fmts should appear here. */ in init_header()