Symbol: CMP
crypto/heimdal/lib/roken/qsort.c
105
return CMP(thunk, a, b) < 0 ?
crypto/heimdal/lib/roken/qsort.c
106
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
crypto/heimdal/lib/roken/qsort.c
107
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
crypto/heimdal/lib/roken/qsort.c
129
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
crypto/heimdal/lib/roken/qsort.c
151
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
crypto/heimdal/lib/roken/qsort.c
159
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
crypto/heimdal/lib/roken/qsort.c
177
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
crypto/openssl/crypto/cmp/cmp_ctx.c
369
if (OSSL_TRACE_ENABLED(CMP)) {
crypto/openssl/crypto/cmp/cmp_ctx.c
370
OSSL_TRACE_BEGIN(CMP)
crypto/openssl/crypto/cmp/cmp_ctx.c
382
OSSL_TRACE_END(CMP);
crypto/openssl/crypto/trace.c
138
TRACE_CATEGORY_(CMP),
crypto/openssl/test/trace_api_test.c
54
SET_EXPECTED_CAT_NAME(CMP);
lib/libc/stdlib/merge.c
148
if (CMP(f1, f2) <= 0) {
lib/libc/stdlib/merge.c
158
while ((b += size) < t && CMP(q, b) >sense)
lib/libc/stdlib/merge.c
167
CMP(q, p) <= sense)
lib/libc/stdlib/merge.c
172
} else if (CMP(q, p) <= sense) {
lib/libc/stdlib/merge.c
181
if (CMP(q, p = b + i) <= sense)
lib/libc/stdlib/merge.c
188
if (CMP(q,
lib/libc/stdlib/merge.c
289
sense = (CMP(f1, f1 + size) > 0);
lib/libc/stdlib/merge.c
294
if ((CMP(f2, f2+ size) > 0) != sense)
lib/libc/stdlib/merge.c
307
if ((CMP(f2-size, f2) > 0) != sense) {
lib/libc/stdlib/merge.c
317
if (f2 < last || CMP(f2 - size, f2) > 0)
lib/libc/stdlib/merge.c
326
if (CMP (f1, f1 + size) > 0)
lib/libc/stdlib/merge.c
345
if (CMP(u, t) <= 0)
lib/libc/stdlib/qsort.c
117
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
lib/libc/stdlib/qsort.c
140
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
lib/libc/stdlib/qsort.c
147
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
lib/libc/stdlib/qsort.c
87
return CMP(thunk, a, b) < 0 ?
lib/libc/stdlib/qsort.c
88
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
lib/libc/stdlib/qsort.c
89
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
sys/libkern/qsort.c
100
return CMP(thunk, a, b) < 0 ?
sys/libkern/qsort.c
101
(CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
sys/libkern/qsort.c
102
:(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
sys/libkern/qsort.c
124
pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
sys/libkern/qsort.c
147
while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
sys/libkern/qsort.c
154
while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
usr.sbin/nscd/hashtable.h
157
#define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \
usr.sbin/nscd/hashtable.h
174
sizeof(type), CMP); \
usr.sbin/nscd/hashtable.h
181
the_entry->field.size, sizeof(type), CMP)); \