Home
last modified time | relevance | path

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

/bionic/libc/upstream-freebsd/lib/libc/stdlib/
Dqsort.c69 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
71 #define CMP(t, x, y) (cmp((x), (y))) macro
81 return CMP(thunk, a, b) < 0 ? in med3()
82 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3()
83 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3()
105 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in qsort_r()
128 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in qsort_r()
136 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in qsort_r()
154 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in qsort_r()