Lines Matching refs:nel
731 static inline void sort_r_simple(void *base, size_t nel, size_t w, in sort_r_simple() argument
737 char *b = (char *)base, *end = b + nel*w; in sort_r_simple()
742 if(nel < 10) { in sort_r_simple()
755 char *last = b+w*(nel-1), *tmp; in sort_r_simple()
763 l[1] = b+w*(nel/2); in sort_r_simple()
851 hb_qsort (void *base, size_t nel, size_t width, in hb_qsort() argument
855 qsort (base, nel, width, compar); in hb_qsort()
857 sort_r_simple (base, nel, width, compar); in hb_qsort()
862 hb_qsort (void *base, size_t nel, size_t width, in hb_qsort() argument
867 qsort_r (base, nel, width, compar, arg); in hb_qsort()
869 sort_r_simple (base, nel, width, compar, arg); in hb_qsort()