HomeSort by: relevance | last modified time | path
    Searched defs:CMP (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/usr.bin/mail/
cmdtab.c 46 # define CMP(x) #x,
49 # define CMP(x)
64 { "next", next, C, CMP(n) NDMLIST, 0, MMNDEL },
65 { "alias", group, S, CMP(A) T|M|RAWLIST, 0, 1000 },
66 /* R */ { "print", type, C, CMP(n) MSGLIST, 0, MMNDEL },
67 /* R */ { "Print", Type, C, CMP(n) MSGLIST, 0, MMNDEL },
68 /* R */ { "type", type, C, CMP(n) MSGLIST, 0, MMNDEL },
69 /* R */ { "Type", Type, C, CMP(n) MSGLIST, 0, MMNDEL },
70 { "visual", visual, 0, CMP(n) I|MSGLIST, 0, MMNORM },
71 /* R */ { "top", top, S, CMP(n) MSGLIST, 0, MMNDEL }
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
81 #define CMP 2
114 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
115 CMP, CMP, CMP, CMP, CMP, CMP, CMP, CMP
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
vec.cc 180 /* Report qsort comparator CMP consistency check failure with P1, P2, P3 as
185 sort_r_cmp_fn *cmp, void *data)
189 int r1 = cmp (p1, p2, data), r2 = cmp (p2, p1, data);
194 int r = cmp (p1, p3, data);
199 int r1 = cmp (p1, p2, data);
200 int r2 = cmp (p2, p3, data);
201 int r3 = cmp (p1, p3, data);
207 /* Verify anti-symmetry and transitivity for comparator CMP on sorted array
210 qsort_chk (void *base, size_t n, size_t size, sort_r_cmp_fn *cmp, void *data
    [all...]
sort.cc 52 cmp_fn *cmp; // pointer to comparator member in struct:sort_ctx
69 int cmp (const void *a, const void *b) function in struct:sort_r_ctx
142 /* Helper for netsort. Invoke comparator CMP on E0 and E1.
151 return x & (c->cmp (e0, e1) >> 31);
160 #define CMP(e0, e1) \
168 CMP (e0, e1);
171 CMP (e1, e2);
172 CMP (e0, e1);
179 CMP (e3, e4);
180 CMP (e2, e4)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
vec.cc 180 /* Report qsort comparator CMP consistency check failure with P1, P2, P3 as
185 sort_r_cmp_fn *cmp, void *data)
189 int r1 = cmp (p1, p2, data), r2 = cmp (p2, p1, data);
194 int r = cmp (p1, p3, data);
199 int r1 = cmp (p1, p2, data);
200 int r2 = cmp (p2, p3, data);
201 int r3 = cmp (p1, p3, data);
207 /* Verify anti-symmetry and transitivity for comparator CMP on sorted array
210 qsort_chk (void *base, size_t n, size_t size, sort_r_cmp_fn *cmp, void *data
    [all...]
sort.cc 54 cmp_fn *cmp; // pointer to comparator member in struct:sort_ctx
71 int cmp (const void *a, const void *b) function in struct:sort_r_ctx
144 /* Helper for netsort. Invoke comparator CMP on E0 and E1.
153 return x & (c->cmp (e0, e1) >> 31);
162 #define CMP(e0, e1) \
170 CMP (e0, e1);
173 CMP (e1, e2);
174 CMP (e0, e1);
181 CMP (e3, e4);
182 CMP (e2, e4)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
qsort.c 95 #define CMP(t, x, y) (cmp((t), (x), (y)))
97 #define CMP(t, x, y) (cmp((x), (y)))
101 med3(char *a, char *b, char *c, cmp_t *cmp, void *thunk
107 return CMP(thunk, a, b) < 0 ?
108 (CMP(thunk, b, c) < 0 ? b : (CMP(thunk, a, c) < 0 ? c : a ))
109 :(CMP(thunk, b, c) > 0 ? b : (CMP(thunk, a, c) < 0 ? a : c ))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRISelLowering.h 60 /// condition code, and operand 3 is the flag operand produced by a CMP
64 CMP,
  /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
M68kISelLowering.h 43 CMP,
52 /// operand, usually produced by a CMP instruction.
61 /// flag operand produced by a CMP or TEST instruction. It also writes a
67 /// condition code, and operand 3 is the flag operand produced by a CMP
258 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
  /src/external/bsd/openldap/dist/libraries/liblmdb/
midl.c 34 #define CMP(x,y) ( (x) < (y) ? -1 : (x) > (y) )
51 val = CMP( ids[cursor], id );
298 val = CMP( id, ids[cursor].mid );
  /src/usr.sbin/gspa/gspa/
gsp_inst.c 65 #define CMP (DYADIC|IMMCOM)
139 {"CMP", 0x4800, CMP, {EXREG, REG, OPTSPEC,0}},
  /src/external/bsd/blocklist/bin/
conf.c 445 #define CMP(a, b, f) \
449 CMP(c1, c2, c_ss.ss_family);
450 CMP(c1, c2, c_lmask);
451 CMP(c1, c2, c_port);
452 CMP(c1, c2, c_proto);
453 CMP(c1, c2, c_family);
454 CMP(c1, c2, c_rmask);
455 CMP(c1, c2, c_uid);
456 #undef CMP
702 #define CMP(a, b, f)
    [all...]
  /src/external/gpl3/binutils/dist/gas/config/
rl78-parse.h 114 CMP = 315, /* CMP */
239 #define CMP 315
rx-parse.h 92 CMP = 293, /* CMP */
261 #define CMP 293
rl78-parse.c 300 CMP = 315, /* CMP */
425 #define CMP 315
575 YYSYMBOL_CMP = 60, /* CMP */
1151 "BTCLR", "BZ", "CALL", "CALLT", "CLR1", "CLRB", "CLRW", "CMP", "CMP0",
2255 { rl78_error ("Only CMP takes these operands"); }
4097 case 301: /* addsub: CMP */
4528 OPC(CMP),
  /src/external/gpl3/binutils.old/dist/gas/config/
rl78-parse.h 114 CMP = 315, /* CMP */
239 #define CMP 315
rx-parse.h 92 CMP = 293, /* CMP */
261 #define CMP 293
rl78-parse.c 300 CMP = 315, /* CMP */
425 #define CMP 315
575 YYSYMBOL_CMP = 60, /* CMP */
1151 "BTCLR", "BZ", "CALL", "CALLT", "CLR1", "CLRB", "CLRW", "CMP", "CMP0",
2255 { rl78_error ("Only CMP takes these operands"); }
4097 case 301: /* addsub: CMP */
4528 OPC(CMP),
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativePPC_common.c 154 #define CMP (HI(31) | LO(0))
sljitNativeX86_common.c 175 #define CMP (/* BINARY */ 7 << 3)
1838 BINARY_IMM(CMP, CMP_rm_r, src2w, src1, 0);
1861 BINARY_IMM(CMP, CMP_rm_r, src2w, src1, src1w);

Completed in 75 milliseconds

1 2