Searched refs:CMP (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrverscmp.c80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2 macro
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CM
[all...]
/freebsd-11-stable/tools/test/sort/regression/
H A DMakefile12 CMP?= ${.CURDIR}/cmp.sh macro
19 @${CMP} ref/${f} output/${f}
25 @${CMP} ref/${f}${opt} output/${f}${opt}
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dqsort.c93 #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 ?
106 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
107 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
129 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
159 while (pb <= pc && (cmp_result = CMP(thun
[all...]
/freebsd-11-stable/sys/libkern/
H A Dqsort.c89 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
91 #define CMP(t, x, y) (cmp((x), (y))) macro
101 return CMP(thunk, a, b) < 0 ?
102 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
103 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
126 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
149 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
157 while (pb <= pc && (cmp_result = CMP(thun
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Dqsort.c67 #define CMP(t, x, y) (cmp((t), (x), (y))) macro
69 #define CMP(t, x, y) (cmp((x), (y))) macro
79 return CMP(thunk, a, b) < 0 ?
80 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
81 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ));
103 pl > (char *)a && CMP(thunk, pl - es, pl) > 0;
126 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
134 while (pb <= pc && (cmp_result = CMP(thun
[all...]
H A Dmerge.c63 #define CMP(x, y) CALL_BLOCK(cmp, x, y) macro
66 #define CMP(x, y) cmp(x, y) macro
158 if (CMP(f1, f2) <= 0) {
168 while ((b += size) < t && CMP(q, b) >sense)
177 CMP(q, p) <= sense)
182 } else if (CMP(q, p) <= sense) {
191 if (CMP(q, p = b + i) <= sense)
198 if (CMP(q,
299 sense = (CMP(f1, f1 + size) > 0);
304 if ((CMP(f
[all...]
/freebsd-11-stable/contrib/byacc/test/
H A Drun_test.sh12 CMP=${REF_DIR}/${NEW}
13 if test ! -f $CMP
15 echo "...not found $CMP"
25 < $CMP >$tmpfile \
26 && mv $tmpfile $CMP
29 mv $CMP $REF
31 elif ( cmp -s $REF $CMP )
34 rm -f $CMP
37 diff -u $REF $CMP
/freebsd-11-stable/crypto/openssh/
H A Ddeattack.c68 #define CMP(a, b) (memcmp(a, b, SSH_BLOCKSIZE)) macro
86 if (!CMP(S, c)) {
138 if (!CMP(c, d)) {
153 if (!CMP(c, buf + dctx->h[i] * SSH_BLOCKSIZE)) {
/freebsd-11-stable/tools/test/iconv/
H A DMakefile36 CMP?= ${.CURDIR}/tablegen/cmp.sh macro
52 @${CMP} ref/${enc} output/${enc}
55 @${CMP} ref/${enc}-rev output/${enc}-rev
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_AArch64.S34 CMP X2, #0
78 CMP X2, #0
122 CMP X2, #0
H A Dxray_trampoline_arm.S27 CMP r2, #0
58 CMP r2, #0
88 CMP r2, #0
/freebsd-11-stable/contrib/blacklist/bin/
H A Dconf.c433 #define CMP(a, b, f) \ macro
437 CMP(c1, c2, c_ss.ss_family);
438 CMP(c1, c2, c_lmask);
439 CMP(c1, c2, c_port);
440 CMP(c1, c2, c_proto);
441 CMP(c1, c2, c_family);
442 CMP(c1, c2, c_rmask);
443 CMP(c1, c2, c_uid);
444 #undef CMP macro
694 #define CMP( macro
705 #undef CMP macro
[all...]
/freebsd-11-stable/usr.sbin/nscd/
H A Dhashtable.h159 #define HASHTABLE_GENERATE(name, entry_, type, field, HASH, CMP) \
176 sizeof(type), CMP); \
183 the_entry->field.size, sizeof(type), CMP)); \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.h39 // CMP
40 CMP,
H A DARCISelLowering.cpp147 case ARCISD::CMP:
148 return "ARCISD::CMP";
172 SDValue Cmp = DAG.getNode(ARCISD::CMP, dl, MVT::Glue, LHS, RHS);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dfastmath2_ldlib_asm.S73 ce = CMP.GT(expa, expb);
172 ce = CMP.GT(expa, expb);
H A Dfastmath2_dlib_asm.S82 ce = CMP.GT(expa, expb);
183 ce = CMP.GT(expa, expb);
H A Dfastmath_dlib_asm.S90 ce = CMP.GT(expa, expb);
225 ce = CMP.GT(expa, expb);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp116 cl::desc("Tracing of CMP and similar instructions"),
553 // * CMP instructions that feed into loop backedge branch.
557 static bool IsInterestingCmp(ICmpInst *CMP, const DominatorTree *DT, argument
560 if (CMP->hasOneUse())
561 if (auto BR = dyn_cast<BranchInst>(CMP->user_back()))
615 if (ICmpInst *CMP = dyn_cast<ICmpInst>(&Inst))
616 if (IsInterestingCmp(CMP, DT, Options))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.h49 /// CMP - Compare instruction.
50 CMP,
53 /// operand produced by a CMP instruction.
58 /// condition code, and operand 3 is the flag operand produced by a CMP
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.h50 /// condition code, and operand 3 is the flag operand produced by a CMP
54 CMP, enumerator in enum:llvm::AVRISD::NodeType
H A DAVRISelLowering.cpp264 NODE(CMP);
441 /// Returns appropriate AVR CMP/CMPC nodes and corresponding condition code for
535 // Expand 32 and 64 bit comparisons with custom CMP and CMPC nodes instead of
553 Cmp = DAG.getNode(AVRISD::CMP, DL, MVT::Glue, LHSlo, RHSlo);
591 Cmp = DAG.getNode(AVRISD::CMP, DL, MVT::Glue, LHS0, RHS0);
605 Cmp = DAG.getNode(AVRISD::CMP, DL, MVT::Glue, LHS, RHS);
/freebsd-11-stable/sys/dev/ncr/
H A Dncrreg.h201 #define CMP 0x40 /* sta: arbitration complete */ macro
/freebsd-11-stable/sys/dev/sym/
H A Dsym_defs.h427 #define CMP 0x40 /* sta: arbitration complete */ macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h83 CMP, // ARM compare instructions.

Completed in 244 milliseconds

12