thunk              89 opal/util/qsort.c med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk)
thunk              91 opal/util/qsort.c 	return CMP(thunk, a, b) < 0 ?
thunk              92 opal/util/qsort.c 	       (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
thunk              93 opal/util/qsort.c               :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
thunk             108 opal/util/qsort.c 			     pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
thunk             119 opal/util/qsort.c 			pl = med3(pl, pl + d, pl + 2 * d, cmp, thunk);
thunk             120 opal/util/qsort.c 			pm = med3(pm - d, pm, pm + d, cmp, thunk);
thunk             121 opal/util/qsort.c 			pn = med3(pn - 2 * d, pn - d, pn, cmp, thunk);
thunk             123 opal/util/qsort.c 		pm = med3(pl, pm, pn, cmp, thunk);
thunk             130 opal/util/qsort.c 		while (pb <= pc && (r = CMP(thunk, pb, a)) <= 0) {
thunk             138 opal/util/qsort.c 		while (pb <= pc && (r = CMP(thunk, pc, a)) >= 0) {
thunk             156 opal/util/qsort.c 			     pl > (char *)a && CMP(thunk, pl - es, pl) > 0;