Lines Matching refs:qsort
987 * qsort -- qsort interface implemented by faster quicksort.
1020 static void qsort(BBCC **a, int n, int (*cmp)(BBCC**,BBCC**))
1026 CLG_DEBUG(8, " qsort(%ld,%ld)\n", a-qsort_start + 0L, n + 0L);
1118 if ((s = pb+1-pa) > 1) qsort(a, s, cmp);
1119 if ((s = pd+1-pc) > 1) qsort(a+n-s, s, cmp);
1244 qsort(array, prepare_count, my_cmp);