Lines Matching refs:i
44 word_t i; in profiler_reset() local
46 for (i = 0; i < MAX_UNIQUE_CHECKPOINTS; i++) { in profiler_reset()
47 profiler_entries[i].pc = 0; in profiler_reset()
48 profiler_entries[i].count = 0; in profiler_reset()
55 unsigned int samples, i, count; in profiler_list() local
61 for (i = 0; i <= max_checkpoint; i++) { in profiler_list()
62 if (profiler_entries[i].pc != 0) { in profiler_list()
63 printf("%u %u\n", i, (unsigned int)profiler_entries[i].count); in profiler_list()
64 samples += profiler_entries[i].count; in profiler_list()
89 for (word_t i = 0; i < MAX_UNIQUE_INSTRUCTIONS; i++) { in profiler_reset() local
90 profiler_entries[i].pc = 0; in profiler_reset()
91 profiler_entries[i].count = 0; in profiler_reset()
109 for (word_t i = 0; i < MAX_UNIQUE_INSTRUCTIONS; i++) { in profiler_list() local
110 if (profiler_entries[i].pc != 0) { in profiler_list()
111 printf("%x %d\n", (unsigned int)profiler_entries[i].pc, in profiler_list()
112 (int)profiler_entries[i].count); in profiler_list()
113 samples += profiler_entries[i].count; in profiler_list()