| /freebsd-13.1/lib/libc/stdlib/ |
| H A D | qsort.c | 75 #define CMP(t, x, y) (cmp((t), (x), (y))) macro 77 #define CMP(t, x, y) (cmp((x), (y), (t))) macro 79 #define CMP(t, x, y) (cmp((x), (y))) macro 89 return CMP(thunk, a, b) < 0 ? in med3() 90 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3() 91 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3() 118 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in local_qsort() 141 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in local_qsort() 149 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in local_qsort() 167 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in local_qsort()
|
| H A D | merge.c | 65 #define CMP(x, y) CALL_BLOCK(cmp, x, y) macro 68 #define CMP(x, y) cmp(x, y) macro 154 if (CMP(f1, f2) <= 0) { in mergesort_b() 173 CMP(q, p) <= sense) in mergesort_b() 178 } else if (CMP(q, p) <= sense) { in mergesort_b() 187 if (CMP(q, p = b + i) <= sense) in mergesort_b() 194 if (CMP(q, in mergesort_b() 295 sense = (CMP(f1, f1 + size) > 0); in setup() 300 if ((CMP(f2, f2+ size) > 0) != sense) in setup() 332 if (CMP (f1, f1 + size) > 0) in setup() [all …]
|
| /freebsd-13.1/crypto/heimdal/lib/roken/ |
| H A D | qsort.c | 93 #define CMP(t, x, y) (cmp((t), (x), (y))) macro 95 #define CMP(t, x, y) (cmp((x), (y))) macro 105 return CMP(thunk, a, b) < 0 ? in med3() 106 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3() 107 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3() 129 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in rk_qsort_r() 151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in rk_qsort_r() 159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in rk_qsort_r() 177 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in rk_qsort_r()
|
| /freebsd-13.1/sys/libkern/ |
| H A D | qsort.c | 91 #define CMP(t, x, y) (cmp((t), (x), (y))) macro 93 #define CMP(t, x, y) (cmp((x), (y))) macro 103 return CMP(thunk, a, b) < 0 ? in med3() 104 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a )) in med3() 105 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c )); in med3() 128 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in qsort_r() 151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) { in qsort_r() 159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) { in qsort_r() 177 pl > (char *)a && CMP(thunk, pl - es, pl) > 0; in qsort_r()
|
| /freebsd-13.1/contrib/byacc/test/ |
| H A D | run_test.sh | 12 CMP=${REF_DIR}/${NEW} 13 if test ! -f $CMP 15 echo "...not found $CMP" 28 < $CMP >$tmpfile \ 29 && mv $tmpfile $CMP 32 mv $CMP $REF 34 elif ( cmp -s $REF $CMP ) 37 rm -f $CMP 40 diff -u $REF $CMP
|
| /freebsd-13.1/tools/test/sort/regression/ |
| H A D | Makefile | 12 CMP?= ${.CURDIR}/cmp.sh macro 19 @${CMP} ref/${f} output/${f} 25 @${CMP} ref/${f}${opt} output/${f}${opt}
|
| /freebsd-13.1/contrib/blacklist/bin/ |
| H A D | conf.c | 433 #define CMP(a, b, f) \ in conf_sort() macro 438 CMP(c1, c2, c_lmask); in conf_sort() 439 CMP(c1, c2, c_port); in conf_sort() 440 CMP(c1, c2, c_proto); in conf_sort() 442 CMP(c1, c2, c_rmask); in conf_sort() 443 CMP(c1, c2, c_uid); in conf_sort() 444 #undef CMP in conf_sort() 694 #define CMP(a, b, f) \ in conf_eq() macro 701 CMP(c1, c2, c_port); in conf_eq() 704 CMP(c1, c2, c_uid); in conf_eq() [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/src/arm/ |
| H A D | sama5d36ek_cmp.dts | 3 * sama5d36ek_cmp.dts - Device Tree file for SAMA5D36-EK CMP board 12 model = "Atmel SAMA5D36EK-CMP";
|
| H A D | sama5d3xcm_cmp.dtsi | 3 * sama5d3xcm_cmp.dtsi - Device Tree Include file for SAMA5D36 CMP CPU Module
|
| /freebsd-13.1/tests/sys/cddl/zfs/tests/zil/ |
| H A D | zil_002_pos.ksh | 93 log_must $CMP $tf1 $tf2 100 log_must $CMP $tf1 $tf2
|
| /freebsd-13.1/tools/test/iconv/ |
| H A D | Makefile | 36 CMP?= ${.CURDIR}/tablegen/cmp.sh macro 52 @${CMP} ref/${enc} output/${enc} 55 @${CMP} ref/${enc}-rev output/${enc}-rev
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_trampoline_AArch64.S | 39 CMP X2, #0 92 CMP X2, #0 141 CMP X2, #0
|
| H A D | xray_trampoline_arm.S | 28 CMP r2, #0 60 CMP r2, #0 91 CMP r2, #0
|
| /freebsd-13.1/usr.sbin/nscd/ |
| H A D | hashtable.h | 159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \ argument 176 sizeof(type), CMP); \ 183 the_entry->field.size, sizeof(type), CMP)); \
|
| /freebsd-13.1/contrib/bearssl/src/int/ |
| H A D | i32_decmod.c | 59 r = MUX(EQ(r, 0), (uint32_t)CMP(xb, mb), r); in br_i32_decode_mod()
|
| H A D | i31_decmod.c | 97 cc = (uint32_t)CMP(xw, m[v]); in br_i31_decode_mod()
|
| H A D | i15_decmod.c | 97 cc = (uint32_t)CMP(xw, m[v]); in br_i15_decode_mod()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/ |
| H A D | fastmath2_ldlib_asm.S | 73 ce = CMP.GT(expa, expb); 172 ce = CMP.GT(expa, expb);
|
| H A D | fastmath_dlib_asm.S | 90 ce = CMP.GT(expa, expb); 225 ce = CMP.GT(expa, expb);
|
| H A D | fastmath2_dlib_asm.S | 82 ce = CMP.GT(expa, expb); 183 ce = CMP.GT(expa, expb);
|
| /freebsd-13.1/tests/sys/cddl/zfs/tests/cli_root/zfs_rename/ |
| H A D | zfs_rename.kshlib | 113 $CMP $src $tgt >/dev/null 2>&1
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCISelLowering.h | 40 CMP, enumerator
|
| /freebsd-13.1/contrib/dialog/ |
| H A D | inputstr.c | 123 #define CMP(a,b) (((a) > (b)) ? 1 : (((a) < (b)) ? -1 : 0)) macro 130 int result = CMP(p->cache_num, q->cache_num); in compare_cache() 132 result = CMP(p->string_at, q->string_at); in compare_cache()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
| H A D | SanitizerCoverage.cpp | 586 static bool IsInterestingCmp(ICmpInst *CMP, const DominatorTree *DT, in IsInterestingCmp() argument 589 if (CMP->hasOneUse()) in IsInterestingCmp() 590 if (auto BR = dyn_cast<BranchInst>(CMP->user_back())) in IsInterestingCmp() 650 if (ICmpInst *CMP = dyn_cast<ICmpInst>(&Inst)) in instrumentFunction() local 651 if (IsInterestingCmp(CMP, DT, Options)) in instrumentFunction()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430ISelLowering.h | 50 CMP, enumerator
|