Lines Matching refs:hpp
1321 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_baseline() argument
1330 return percent_color_snprintf(hpp->buf, hpp->size, in hpp__color_baseline()
1333 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_baseline()
1350 struct perf_hpp *hpp, int width) in cycles_printf() argument
1361 hpp->skip = true; in cycles_printf()
1390 return scnprintf(hpp->buf, hpp->size, "%*s", width, buf); in cycles_printf()
1394 struct perf_hpp *hpp, struct hist_entry *he, in __hpp__color_compare() argument
1410 hpp->skip = true; in __hpp__color_compare()
1424 return percent_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1435 return value_color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1446 return color_snprintf(hpp->buf, hpp->size, in __hpp__color_compare()
1450 return cycles_printf(he, pair, hpp, dfmt->header_width); in __hpp__color_compare()
1455 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1458 return scnprintf(hpp->buf, hpp->size, "%*s", in __hpp__color_compare()
1463 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_delta() argument
1465 return __hpp__color_compare(fmt, hpp, he, COMPUTE_DELTA); in hpp__color_delta()
1469 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_ratio() argument
1471 return __hpp__color_compare(fmt, hpp, he, COMPUTE_RATIO); in hpp__color_ratio()
1475 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_wdiff() argument
1477 return __hpp__color_compare(fmt, hpp, he, COMPUTE_WEIGHTED_DIFF); in hpp__color_wdiff()
1481 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles() argument
1483 return __hpp__color_compare(fmt, hpp, he, COMPUTE_CYCLES); in hpp__color_cycles()
1514 struct perf_hpp *hpp, struct hist_entry *he) in hpp__color_cycles_hist() argument
1528 hpp->skip = true; in hpp__color_cycles_hist()
1537 hpp->skip = true; in hpp__color_cycles_hist()
1554 ret = scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1558 ret += scnprintf(hpp->buf + ret, hpp->size - ret, in hpp__color_cycles_hist()
1566 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__color_cycles_hist()
1665 static int hpp__entry_global(struct perf_hpp_fmt *_fmt, struct perf_hpp *hpp, in hpp__entry_global() argument
1675 return scnprintf(hpp->buf, hpp->size, "%s", buf); in hpp__entry_global()
1677 return scnprintf(hpp->buf, hpp->size, "%*s", in hpp__entry_global()
1681 static int hpp__header(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp, in hpp__header() argument
1690 return scnprintf(hpp->buf, hpp->size, dfmt->header); in hpp__header()
1694 struct perf_hpp *hpp __maybe_unused, in hpp__width()