Home
last modified time | relevance | path

Searched refs:__qsort_r (Results 1 – 5 of 5) sorted by relevance

/third_party/musl/porting/liteos_a/user/src/stdlib/
Dqsort.c46 void __qsort_r(void *base, size_t nel, size_t width, cmpfun cmp, void *arg) in __qsort_r() function
106 __qsort_r(start, (m - start) / width, width, cmp, arg); in __qsort_r()
114 __qsort_r(m + width, (end - m) / width, width, cmp, arg); in __qsort_r()
124 weak_alias(__qsort_r, qsort_r);
/third_party/musl/src/stdlib/liteos_a/
Dqsort.c46 void __qsort_r(void *base, size_t nel, size_t width, cmpfun cmp, void *arg) in __qsort_r() function
106 __qsort_r(start, (m - start) / width, width, cmp, arg); in __qsort_r()
114 __qsort_r(m + width, (end - m) / width, width, cmp, arg); in __qsort_r()
124 weak_alias(__qsort_r, qsort_r);
/third_party/musl/src/stdlib/
Dqsort.c158 void __qsort_r(void *base, size_t nel, size_t width, cmpfun cmp, void *arg) in __qsort_r() function
221 weak_alias(__qsort_r, qsort_r);
Dqsort_nr.c13 __qsort_r(base, nel, width, wrapper_cmp, cmp); in qsort()
/third_party/musl/src/include/
Dstdlib.h11 hidden void __qsort_r (void *, size_t, size_t, int (*)(const void *, const void *, void *), void *);