Searched refs:COMPAR (Results 1 – 2 of 2) sorted by relevance
| /freebsd/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 | 43 #define COMPAR(x,y) CALL_BLOCK(compar, x, y) macro 46 #define COMPAR(x,y) compar((x), (y), context) macro 48 #define COMPAR(x,y) compar(x, y) macro 114 cmp = COMPAR(key, p);
|