Lines Matching defs:qsort_r
308 void qsort_r(void *, size_t, size_t,
331 * In FreeBSD 14, the prototype of qsort_r() was modified to comply with
332 * POSIX. The standardized qsort_r()'s order of last two parameters was
335 * FreeBSD qsort_r() interface.
338 * qsort_r@FBSD_1.0, in case when qsort_r() is called with the last parameter
339 * with a function pointer that exactly matches the historical FreeBSD qsort_r()
349 __sym_compat(qsort_r, __qsort_r_compat, FBSD_1.0);
353 #define qsort_r(base, nel, width, arg4, arg5) \
355 __qsort_r_compat, qsort_r)(base, nel, width, arg4, arg5)
359 static inline void qsort_r(void *base, size_t nmemb, size_t size,