Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/search/
Dqsort.c130 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
132 #define CMP(t, x, y) (cmp((x), (y), (t))) macro
134 #define CMP(t, x, y) (cmp((x), (y))) macro
148 return CMP(thunk, a, b) < 0 ? in med3()
149 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3()
150 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3()
212 for (pl = pm; pl > (char *) a && CMP(thunk, pl - es, pl) > 0; in __bsd_qsort_r()
241 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in __bsd_qsort_r()
251 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in __bsd_qsort_r()
270 for (pl = pm; pl > (char *) a && CMP(thunk, pl - es, pl) > 0; in __bsd_qsort_r()