HomeSort by relevance Sort by last modified time
    Searched refs:DIFF (Results 1 - 5 of 5) sorted by null

  /external/bzip2/
bzdiff 4 # Bzcmp/diff wrapped for bzip2,
7 # Bzcmp and bzdiff are used to invoke the cmp or the diff pro-
9 # directly to cmp or diff. If only 1 file is specified, then
12 # necessary) and fed to cmp or diff. The exit status from cmp
13 # or diff is preserved.
19 *) comp=${DIFF-diff} ;;
  /external/opencv/cvaux/src/
cvsegment.cpp 75 #define DIFF(p1,p2) ((unsigned)((p1)[0] - (p2)[0] + d_lw)<=Interval && \
79 /*#define DIFF(p1,p2) (CV_IABS((p1)[0] - (p2)[0]) + \
111 while( DIFF( img + (R+1)*3, /*img + R*3*/val0 ) && !mask[R + 1] )
114 while( DIFF( img + (L-1)*3, /*img + L*3*/val0 ) && !mask[L - 1] )
152 if( !mask[i] && DIFF( img + i*3, /*img - curstep + i*3*/val0 ))
156 while( !mask[j - 1] && DIFF( img + (j - 1)*3, /*img + j*3*/val0 ))
160 (DIFF( img + (i+1)*3, /*img + i*3*/val0 ) ||
161 (DIFF( img + (i+1)*3, /*img + (i+1)*3 - curstep*/val0) && i < R)))
202 #undef DIFF
  /external/webkit/Tools/Scripts/
prepare-ChangeLog 27 # and functions from a diff.
48 # Work around diff stupidity where deleting a function that starts
49 # with a comment makes diff think that the following function
52 # Work around diff stupidity where deleting an entire function and
53 # the blank lines before it makes diff think you've changed the
116 GetOptions("diff|d!" => \$spewDiff,
130 print STDERR basename($0) . " [-b|--bug=<bugid>] [-d|--diff] [-h|--help] [-o|--open] [-g|--git-commit=<committish>] [--git-reviewer=<name>] [svndir1 [svndir2 ...]]\n";
133 print STDERR " -d|--diff Spew diff to stdout when running\n";
134 print STDERR " --merge-base Populate the ChangeLogs with the diff to this branch\n"
    [all...]
svn-create-patch 29 # Extended "svn diff" script for WebKit Open Source Project, used to make patches.
31 # Differences from standard "svn diff":
33 # Uses the real diff, not svn's built-in diff.
34 # Always passes "-p" to diff so it will try to include function names.
230 open DIFF, "svn diff --diff-cmd diff -x -$diffOptions '$file' |" or die;
231 while (<DIFF>) {
    [all...]
VCSUtils.pm 102 my $gitDiffStartRegEx = qr#^diff --git (\w/)?(.+) (\w/)?([^\r\n]+)#;
535 # Parse the next Git diff header from the given file handle, and advance
543 # beginning with "diff --git".
547 # $headerHashRef: a hash reference representing a diff header, as follows--
549 # the diff is a copy or move.
555 # isBinary: the value 1 if the diff is for a binary file.
556 # isDeletion: the value 1 if the diff is a file deletion.
561 # isNew: the value 1 if the diff is for a new file.
583 die("Could not parse leading \"diff --git\" line: \"$line\".");
629 # The "git diff" command includes a line of the form "Binary file
    [all...]

Completed in 231 milliseconds