Searched refs:COMPAR (Results 1 – 2 of 2) sorted by relevance
| /src/lib/libc/stdlib/ |
| H A D | heapsort.c | 43 #define COMPAR(x, y) CALL_BLOCK(compar, x, y) macro 46 #define COMPAR(x, y) compar(x, y) macro 86 if (child_i < nmemb && COMPAR(child, child + size) < 0) { \ 91 if (COMPAR(child, par) <= 0) \ 117 if (child_i < nmemb && COMPAR(child, child + size) < 0) { \ 129 if (child_i == 1 || COMPAR(k, par) < 0) { \
|
| H A D | bsearch.c | 37 #define COMPAR(x,y) CALL_BLOCK(compar, x, y) macro 40 #define COMPAR(x,y) compar(x, y) macro 76 cmp = COMPAR(key, p); in bsearch_b()
|