Searched refs:diff (Results 276 - 300 of 736) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/expat-12/expat/tests/
H A Dxmltest.sh14 # output differs are prefixed with "Output differs:", and a diff file
58 diff "$OUTPUT$reldir$file" "out/$file" > outfile
60 cp outfile "$OUTPUT$reldir$file.diff"
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dfstat.test124 set diff [expr {[fstat $fh size] - $oldsize}]
126 set diff
/macosx-10.10.1/uucp-11/
H A DMakefile46 AEP_Patches = PR-3996371-conf.diff \
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dgitcommit.vim18 syn include @gitcommitDiff syntax/diff.vim
19 syn region gitcommitDiff start=/\%(^diff --\%(git\|cc\|combined\) \)\@=/ end=/^$\|^#\@=/ contains=@gitcommitDiff
/macosx-10.10.1/vim-55/src/testdir/
H A DMake_os2.mak4 # Requires a set of Unix tools: echo, diff, etc.
49 diff test.out $*.ok
/macosx-10.10.1/ppp-786.1.1/Helpers/pppd/
H A Dtty.c1486 int diff; local
1490 diff = (now.tv_sec - tp->tv_sec) * 10 + (now.tv_usec - tp->tv_usec);
1491 if (diff > 0) {
1492 if (diff > 255) {
1494 putc(diff >> 24, f);
1495 putc(diff >> 16, f);
1496 putc(diff >> 8, f);
1497 putc(diff, f);
1500 putc(diff, f);
/macosx-10.10.1/ruby-106/ruby/lib/minitest/
H A Dunit.rb86 # Returns the diff command to use in #diff. Tries to intelligently
87 # figure out what diff to use.
89 def self.diff singleton method in class:Assertions
90 @diff = if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ then
91 "diff.exe -u"
95 elsif system("diff", __FILE__, __FILE__)
96 "diff -u"
100 end unless defined? @diff
102 @diff
108 def self.diff= o singleton method
118 def diff exp, act method
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/mk4tcl/metakit/src/
H A Dpersist.cpp431 c4_View diff = pDiff(_diffs[id_]);
432 if (_temp.GetSize() != diff.GetSize() || _temp != diff)
452 c4_View diff = pDiff(_diffs[id_]); local
455 for (int n = 0; n < diff.GetSize(); ++n) {
456 c4_RowRef row(diff[n]);
481 c4_View diff = pDiff(_diffs[last]); local
482 if (diff.GetSize() > 0)
483 pBytes(diff[0]).GetData(buffer_);
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcompmatch.c2301 int diff; local
2320 diff = ++p2 - q;
2321 if (diff == 0) {
2327 } else if (diff > 0) {
2337 l -= diff;
2648 int diff; local
2662 diff = sub_join(n, o, tn, 1);
2676 po->max += diff;
2679 o->max += diff;
2693 diff
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Ddest.c1201 int diff, /* Result of comparison */ local
1229 match = cups_find_dest(name, instance, num_dests, dests, -1, &diff);
1231 if (!diff)
2569 diff; /* Result of comparison */ local
2596 &diff);
2598 if (diff > 0)
2650 int diff; /* Difference */ local
2653 if ((diff = _cups_strcasecmp(a->name, b->name)) != 0)
2654 return (diff);
3547 diff; /* Resul local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tktable/tktable/generic/
H A DtkTable.c3067 diff, unpreset, lastUnpreset, pad, lastPad, numPixels,
3139 diff = w - numPixels - (unpreset * defColWidth);
3147 if (diff <= 0) {
3166 pad = diff / unpreset;
3167 lastPad = diff - pad * (unpreset - 1);
3172 lastPad = diff;
3176 pad = diff / tablePtr->cols;
3179 lastPad = diff - pad * lastUnpreset;
3231 diff = h - numPixels - (unpreset * defRowHeight);
3242 pad = MAX(0,diff) / unprese
3066 diff, unpreset, lastUnpreset, pad, lastPad, numPixels, local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dtest051.tcl207 set diff [expr $doff - $ilen]
210 format a[set nlen]x[set diff]a$dlen $newdata $pdata]
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/src/
H A Drefresh.c453 * in the first or second diff, diff is the difference between the
457 re_clear_eol(EditLine *el, int fx, int sx, int diff) argument
460 ELRE_DEBUG(1, (__F, "re_clear_eol sx %d, fx %d, diff %d\n",
461 sx, fx, diff));
467 if (fx > diff)
468 diff = fx;
469 if (sx > diff)
470 diff = sx;
472 ELRE_DEBUG(1, (__F, "re_clear_eol %d\n", diff));
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/tzcode/
H A Dzdump.c676 long diff; local
689 diff = (long) (hit - lot);
690 if (diff < 2)
693 t += diff / 2;
874 long diff; local
887 diff = (long) (hit - lot);
888 if (diff < 2)
891 t += diff / 2;
/macosx-10.10.1/OpenSSL098-52/bin/
H A Dextract-source.sh82 diff --old-group-format='#ifdef __LP64__
/macosx-10.10.1/apr-32/apr-util/apr-util/crypto/
H A Dcrypt_blowfish.c548 BF_word safety, sign, diff, tmp[2]; local
587 sign = diff = 0;
609 diff |= tmp[0] ^ tmp[1]; /* Non-zero on any differences */
616 * At this point, "diff" is zero iff the correct and buggy algorithms produced
624 diff |= diff >> 16; /* still zero iff exact match */
625 diff &= 0xffff; /* ditto */
626 diff += 0xffff; /* bit 16 set iff "diff" was non-zero (on non-match) */
628 sign &= ~diff
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/gnus/
H A Dgnus-demon.el179 (diff (+ (* 65536 (- (car then) (car now)))
182 (round (/ diff gnus-demon-timestep)))))
/macosx-10.10.1/gpatch-3/patch/
H A Dcommon.h199 enum diff enum
209 XTERN enum diff diff_type;
/macosx-10.10.1/libedit-40/src/
H A Drefresh.c453 * in the first or second diff, diff is the difference between the
457 re_clear_eol(EditLine *el, int fx, int sx, int diff) argument
460 ELRE_DEBUG(1, (__F, "re_clear_eol sx %d, fx %d, diff %d\n",
461 sx, fx, diff));
467 if (fx > diff)
468 diff = fx;
469 if (sx > diff)
470 diff = sx;
472 ELRE_DEBUG(1, (__F, "re_clear_eol %d\n", diff));
[all...]
/macosx-10.10.1/xnu-2782.1.97/SETUP/config/
H A Ddoconf270 diff $SYSCONF $SYSCONF.new
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/tests/scripts/
H A Dtest024-unique131 diff $TESTDIR/initial-config.ldif $TESTDIR/initial-reference.ldif > /dev/null 2>&1
171 diff $TESTDIR/initial-config-recheck.ldif $TESTDIR/initial-reference.ldif > /dev/null 2>&1
204 diff $TESTDIR/baseremoval-config.ldif $TESTDIR/baseremoval-reference.ldif > /dev/null 2>&1
321 diff $TESTDIR/second-config.ldif $TESTDIR/second-reference.ldif > /dev/null 2>&1
415 diff $TESTDIR/second-config-recheck.ldif $TESTDIR/second-reference.ldif > /dev/null 2>&1
455 diff $TESTDIR/third-config.ldif $TESTDIR/third-reference.ldif > /dev/null 2>&1
543 diff $TESTDIR/fourth-config.ldif $TESTDIR/fourth-reference.ldif > /dev/null 2>&1
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dxfrin.c33 #include <dns/diff.h>
138 dns_diff_t diff; /*%< Pending database changes */ member in struct:dns_xfrin_ctx
291 CHECK(dns_difftuple_create(xfr->diff.mctx, op,
293 dns_diff_append(&xfr->diff, &tuple);
308 CHECK(dns_diff_load(&xfr->diff,
311 dns_diff_clear(&xfr->diff);
379 CHECK(dns_difftuple_create(xfr->diff.mctx, op,
381 dns_diff_append(&xfr->diff, &tuple);
401 CHECK(dns_diff_apply(&xfr->diff, xfr->db, xfr->ver));
403 result = dns_journal_writediff(xfr->ixfr.journal, &xfr->diff);
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Dgetcap.c477 int diff, iret, tclen; local
556 diff = newilen - tclen;
557 if (diff >= r_end - rp) {
562 newsize = r_end - record + diff + BFRAG;
585 rp += diff;
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dgetcap.c396 int diff, iret, tclen; local
475 diff = newilen - tclen;
476 if (diff >= r_end - rp) {
481 newsize = r_end - record + diff + BFRAG;
504 rp += diff;
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dmodrdn.c219 ber_slen_t diff; local
244 diff = (ber_slen_t) dest_ndn.bv_len - (ber_slen_t) op->o_req_ndn.bv_len;
245 if ( diff > 0 ? dnIsSuffix( &dest_ndn, &op->o_req_ndn )
246 : diff < 0 && dnIsSuffix( &op->o_req_ndn, &dest_ndn ) )
249 diff > 0 ? "cannot place an entry below itself"

Completed in 518 milliseconds

<<11121314151617181920>>