Lines Matching full:hpp
49 /* Diff command specific HPP columns. */
1310 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_baseline() argument
1319 return percent_color_snprintf(hpp->buf, hpp->size, in hpp__color_baseline()
1322 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_baseline()
1339 struct perf_hpp *hpp, int width) in cycles_printf() argument
1350 hpp->skip = true; in cycles_printf()
1379 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); in cycles_printf()
1383 struct perf_hpp *hpp, struct hist_entry *he, in __hpp__color_compare() argument
1399 hpp->skip = true; in __hpp__color_compare()
1413 return percent_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1424 return value_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1435 return color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1439 return cycles_printf(he, pair, hpp, dfmt->header_width); in __hpp__color_compare()
1444 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1447 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1452 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_delta() argument
1454 return __hpp__color_compare(fmt, hpp, he, COMPUTE_DELTA); in hpp__color_delta()
1458 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_ratio() argument
1460 return __hpp__color_compare(fmt, hpp, he, COMPUTE_RATIO); in hpp__color_ratio()
1464 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_wdiff() argument
1466 return __hpp__color_compare(fmt, hpp, he, COMPUTE_WEIGHTED_DIFF); in hpp__color_wdiff()
1470 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles() argument
1472 return __hpp__color_compare(fmt, hpp, he, COMPUTE_CYCLES); in hpp__color_cycles()
1503 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles_hist() argument
1517 hpp->skip = true; in hpp__color_cycles_hist()
1526 hpp->skip = true; in hpp__color_cycles_hist()
1543 ret = scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1547 ret += scnprintf(hpp->buf + ret, hpp->size - ret, in hpp__color_cycles_hist()
1555 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1654 static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp, in hpp__entry_global() argument
1664 return scnprintf(hpp->buf, hpp->size, "%s", buf); in hpp__entry_global()
1666 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__entry_global()
1670 static int hpp__header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, in hpp__header() argument
1679 return scnprintf(hpp->buf, hpp->size, dfmt->header); in hpp__header()
1683 struct perf_hpp *hpp __maybe_unused, in hpp__width()
1705 /* Only our defined HPP fmts should appear here. */ in init_header()