Lines Matching full:printed
1152 int printed; in callchain_list__sym_name() local
1158 printed = scnprintf(bf, bfsize, "%s %s%s", in callchain_list__sym_name()
1162 printed = scnprintf(bf, bfsize, "%s%s", in callchain_list__sym_name()
1165 printed = scnprintf(bf, bfsize, "%#" PRIx64, cl->ip); in callchain_list__sym_name()
1168 scnprintf(bf + printed, bfsize - printed, " %s", in callchain_list__sym_name()
1304 int printed; in count_pri64_printf() local
1306 printed = scnprintf(bf, bfsize, "%s%s:%" PRId64 "", (idx) ? " " : " (", str, value); in count_pri64_printf()
1308 return printed; in count_pri64_printf()
1314 int printed; in count_float_printf() local
1319 printed = scnprintf(bf, bfsize, "%s%s:%.1f%%", (idx) ? " " : " (", str, value); in count_float_printf()
1321 return printed; in count_float_printf()
1329 int printed, i = 0; in branch_to_str() local
1331 printed = branch_type_str(brtype_stat, bf, bfsize); in branch_to_str()
1332 if (printed) in branch_to_str()
1336 printed += count_float_printf(i++, "predicted", in branch_to_str()
1338 bf + printed, bfsize - printed, 0.0); in branch_to_str()
1342 printed += count_float_printf(i++, "abort", in branch_to_str()
1344 bf + printed, bfsize - printed, 0.1); in branch_to_str()
1348 printed += scnprintf(bf + printed, bfsize - printed, ")"); in branch_to_str()
1350 return printed; in branch_to_str()
1358 int printed = 0, i = 0; in branch_from_str() local
1363 printed += count_pri64_printf(i++, "cycles", in branch_from_str()
1365 bf + printed, bfsize - printed); in branch_from_str()
1371 printed += count_pri64_printf(i++, "iter", in branch_from_str()
1372 v, bf + printed, bfsize - printed); in branch_from_str()
1374 printed += count_pri64_printf(i++, "avg_cycles", in branch_from_str()
1376 bf + printed, bfsize - printed); in branch_from_str()
1381 printed += scnprintf(bf + printed, bfsize - printed, ")"); in branch_from_str()
1383 return printed; in branch_from_str()
1393 int printed; in counts_str_build() local
1399 printed = branch_to_str(bf, bfsize, branch_count, in counts_str_build()
1402 printed = branch_from_str(bf, bfsize, branch_count, in counts_str_build()
1407 if (!printed) in counts_str_build()
1410 return printed; in counts_str_build()