Searched refs:cmp (Results 126 - 150 of 176) sorted by relevance

12345678

/haiku-fatelf/src/bin/bash/support/
H A Dtexi2dvi616 # cmp -s returns nonzero exit status if files differ.
617 if cmp -s "$this_file" "$tmpdir_bak/$this_file"; then :; else
/haiku-fatelf/src/bin/gdb/opcodes/
H A Dtic54x-dis.c568 const char *cmp[] = { local
575 buf += sprintf (buf, "%c%s%s", acc, cmp[(opcode & 0x7)],
H A Dtic80-opc.c245 int cmp;
251 cmp = strcasecmp (name, tic80_predefined_symbols[middle].name);
252 if (cmp < 0)
256 else if (cmp > 0)
720 {"cmp", OP_SI(0x50), MASK_SI, 0, {SSI, REG_22, REG_DEST} },
721 {"cmp", OP_LI(0x3A1), MASK_LI, 0, {LSI, REG_22, REG_DEST} },
722 {"cmp", OP_REG(0x3A0), MASK_REG, 0, {REG_0, REG_22, REG_DEST} },
244 int cmp; local
/haiku-fatelf/src/bin/gdb/readline/doc/
H A Dtexi2dvi531 # cmp -s returns nonzero exit status if files differ.
532 if cmp -s "$this_file" "$tmpdir_bak/$this_file"; then :; else
/haiku-fatelf/src/system/kernel/arch/x86/64/
H A Dinterrupts.S491 cmp %rdx, %rsi
/haiku-fatelf/src/bin/bfs_tools/lib/
H A DBPlusTree.cpp582 int32 cmp = CompareKeys(key,keyLength,searchKey,searchLength); local
583 if (cmp < 0)
588 else if (cmp > 0)
/haiku-fatelf/src/libs/pdflib/libs/pdflib/
H A Dp_encoding.c681 int cmp = strcmp(glyphname, p->name2unicode[i].glyphname); local
683 if (cmp == 0)
686 if (cmp < 0)
/haiku-fatelf/src/bin/gdb/gdb/
H A Dada-lang.c3866 int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len);
3868 if (cmp < 0)
3873 else if (cmp == 0
3909 int cmp;
3911 cmp = (int) '_' - (int) SYMBOL_LINKAGE_NAME (psym)[0];
3912 if (cmp == 0)
3914 cmp = strncmp ("_ada_", SYMBOL_LINKAGE_NAME (psym), 5);
3915 if (cmp == 0)
3916 cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym) + 5,
3920 if (cmp <
3857 int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (psym), name_len); local
3900 int cmp; local
4835 int cmp = strncmp (name, SYMBOL_LINKAGE_NAME (sym), name_len); local
4880 int cmp; local
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp1013 int32 cmp = _CompareKeys(key, keyLength, searchKey, searchLength); local
1014 if (cmp < 0) {
1017 } else if (cmp > 0) {
2984 off_t cmp; local
2988 cmp = ValueAt(index) - value;
2989 if (cmp < 0)
2991 else if (cmp > 0)
/haiku-fatelf/src/bin/gdb/bfd/
H A Dnlmcode.h1619 int cmp;
1621 cmp = strcmp ((*r1->rel->sym_ptr_ptr)->name,
1623 if (cmp != 0)
1624 return cmp;
1617 int cmp; variable
/haiku-fatelf/src/tests/kits/storage/
H A DEntryTest.cpp2192 int cmp = 0; local
2194 cmp = 1;
2196 cmp = -1;
2197 CPPUNIT_ASSERT( (ref == ref2) == (cmp == 0) );
2198 CPPUNIT_ASSERT( (ref2 == ref) == (cmp == 0) );
2199 CPPUNIT_ASSERT( (ref != ref2) == (cmp != 0) );
2200 CPPUNIT_ASSERT( (ref2 != ref) == (cmp != 0) );
2201 CPPUNIT_ASSERT( (ref < ref2) == (cmp < 0) );
2202 CPPUNIT_ASSERT( (ref2 < ref) == (cmp > 0) );
/haiku-fatelf/src/bin/gdb/etc/
H A Dconfigure641 if cmp -s $cache_file confcache; then
/haiku-fatelf/src/bin/gdb/gdb/doc/
H A DMakefile.in218 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
H A Dconfigure664 if cmp -s $cache_file confcache; then
/haiku-fatelf/src/libs/ncurses/progs/
H A Dtset.c133 int cmp = LOWERCASE(*a) - LOWERCASE(*b); local
134 if (cmp != 0)
/haiku-fatelf/src/libs/termcap/
H A Dconfigure829 if cmp -s $cache_file confcache; then
/haiku-fatelf/src/bin/gdb/
H A Dconfigure2136 gcc_cv_prog_cmp_skip='tail +16c $$f1 > tmp-foo1; tail +16c $$f2 > tmp-foo2; cmp tmp-foo1 tmp-foo2'
2137 if cmp t1 t2 2 2 > /dev/null 2>&1; then
2138 if cmp t1 t2 1 1 > /dev/null 2>&1; then
2141 gcc_cv_prog_cmp_skip='cmp $$f1 $$f2 16 16'
2144 if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
2145 if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
2148 gcc_cv_prog_cmp_skip='cmp --ignore-initial=16 $$f1 $$f2'
4813 && cmp confdir.s1/conftest.1 confdir.s2/conftest.1 \
4815 && cmp confdir.s1/conftest.2 confdir.s1/conftest.2 \
4909 if cmp
[all...]
/haiku-fatelf/src/bin/network/wget/src/
H A Dftp.c2059 * complaint to %CC-W-PTRMISMATCH on "cmp = strcmp;". Adding
2063 int (*cmp) (const char *, const char *)
2066 int (*cmp) (const char *, const char *)
2072 if (0 != cmp(u->file, f->name))
H A Dutils.c1034 int cmp = opt.ignore_case
1036 if (cmp == 0)
1028 int cmp = opt.ignore_case local
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DBPlusTree.cpp557 int32 cmp = CompareKeys(key, keyLength, searchKey, searchLength); local
558 if (cmp < 0) {
561 } else if (cmp > 0) {
/haiku-fatelf/src/bin/diffutils/doc/
H A DMakefile146 @cmp -s vti.tmp $(srcdir)/version.texi \
/haiku-fatelf/src/bin/gdb/gdb/nlm/
H A Dconfigure802 if cmp -s $cache_file confcache; then
/haiku-fatelf/src/bin/network/wget/lib/
H A DMakefile.am131 if test -f $@ && cmp $@-t $@ > /dev/null; then \
/haiku-fatelf/src/kits/interface/
H A DListView.cpp1171 BListView::SortItems(int (*cmp)(const void *, const void *))
1178 fList.SortItems(cmp);
/haiku-fatelf/src/bin/network/wget/
H A Dmaint.mk153 @grep -nE '! *str''cmp *\(|\<str''cmp *\([^)]+\) *==' \
156 { echo '$(ME): use STREQ in place of the above uses of str''cmp' \

Completed in 176 milliseconds

12345678