Lines Matching refs:i
15 int i; in stars() local
17 for (i = 0; i < (width * val / max) - 1 && i < width - 1; i++) in stars()
18 str[i] = '*'; in stars()
20 str[i - 1] = '+'; in stars()
21 str[i] = '\0'; in stars()
45 int i, ind; in print_hist_for_pid() local
64 for (i = 1; i <= max_ind + 1; i++) { in print_hist_for_pid()
65 stars(starstr, data[i - 1], max_value, MAX_STARS); in print_hist_for_pid()
67 (1l << i) >> 1, (1l << i) - 1, data[i - 1], in print_hist_for_pid()
77 int i; in print_hist() local
82 for (i = 0; i < task_cnt; i++) in print_hist()
83 if (memcmp(&tasks[i], &next_key, SIZE) == 0) in print_hist()
90 for (i = 0; i < task_cnt; i++) { in print_hist()
92 (__u32) tasks[i].pid_tgid, in print_hist()
93 tasks[i].comm, in print_hist()
94 (__u32) tasks[i].uid_gid); in print_hist()
95 print_hist_for_pid(fd, &tasks[i]); in print_hist()
111 int i; in main() local
130 for (i = 0; i < 5; i++) { in main()