Searched refs:sorted_count (Results 1 – 3 of 3) sorted by relevance
138 unsigned int *sorted_count; in call_summary_pers() local145 sorted_count = xcalloc(sizeof(sorted_count[0]), nsyscalls); in call_summary_pers()148 sorted_count[i] = i; in call_summary_pers()162 qsort((void *) sorted_count, nsyscalls, in call_summary_pers()163 sizeof(sorted_count[0]), sortfun); in call_summary_pers()166 unsigned int idx = sorted_count[i]; in call_summary_pers()182 free(sorted_count); in call_summary_pers()
2595 (sorted_count): Variable removed.
9542 * count.c (call_summary_pers): Change the type of sorted_count9543 to "unsigned int *". Replace sizeof(int) with sizeof(sorted_count[0]).