Home
last modified time | relevance | path

Searched refs:sorted_count (Results 1 – 3 of 3) sorted by relevance

/external/strace/
Dcount.c138 unsigned int *sorted_count; in call_summary_pers() local
145 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()
DChangeLog-CVS2595 (sorted_count): Variable removed.
DChangeLog9542 * count.c (call_summary_pers): Change the type of sorted_count
9543 to "unsigned int *". Replace sizeof(int) with sizeof(sorted_count[0]).