• Home
  • Raw
  • Download

Lines Matching refs:len

19 		      hpp_field_fn get_field, const char *fmt, int len,  in __hpp__fmt()  argument
35 ret = hpp__call_print_fn(hpp, print_fn, fmt, len, percent); in __hpp__fmt()
37 ret = hpp__call_print_fn(hpp, print_fn, fmt, len, get_field(he)); in __hpp__fmt()
63 fmt, len, 0.0); in __hpp__fmt()
66 fmt, len, 0ULL); in __hpp__fmt()
71 ret += hpp__call_print_fn(hpp, print_fn, fmt, len, in __hpp__fmt()
75 len, period); in __hpp__fmt()
89 fmt, len, 0.0); in __hpp__fmt()
92 fmt, len, 0ULL); in __hpp__fmt()
111 int len = fmt->user_len ?: fmt->len; in hpp__fmt() local
119 len -= 2; /* 2 for a space and a % sign */ in hpp__fmt()
121 len -= 1; in hpp__fmt()
123 return __hpp__fmt(hpp, he, get_field, fmtstr, len, print_fn, fmt_percent); in hpp__fmt()
131 int len = fmt->user_len ?: fmt->len; in hpp__fmt_acc() local
132 return snprintf(hpp->buf, hpp->size, " %*s", len - 1, "N/A"); in hpp__fmt_acc()
216 int len = fmt->user_len ?: fmt->len; in hpp__width_fn() local
219 len = max(len, evsel->nr_members * fmt->len); in hpp__width_fn()
221 if (len < (int)strlen(fmt->name)) in hpp__width_fn()
222 len = strlen(fmt->name); in hpp__width_fn()
224 return len; in hpp__width_fn()
230 int len = hpp__width_fn(fmt, hpp, evsel); in hpp__header_fn() local
231 return scnprintf(hpp->buf, hpp->size, "%*s", len, fmt->name); in hpp__header_fn()
239 int ret, len; in hpp_color_scnprintf() local
242 len = va_arg(args, int); in hpp_color_scnprintf()
244 ret = percent_color_len_snprintf(hpp->buf, hpp->size, fmt, len, percent); in hpp_color_scnprintf()
652 fmt->len = 8; in perf_hpp__reset_width()
657 fmt->len = 9; in perf_hpp__reset_width()
662 fmt->len = 12; in perf_hpp__reset_width()
678 int len = strtol(ptr, &p, 10); in perf_hpp__set_user_width() local
679 fmt->user_len = len; in perf_hpp__set_user_width()