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

  /external/iptables/
release.sh 10 PATCH="patch-iptables-$PREV_VERSION-$VERSION.bz2";
16 git diff "v$PREV_VERSION..v$VERSION" | bzip2 > "$TMPDIR/$PATCH"
29 gpg -u "Netfilter Core Team" -sb "$PATCH";
30 md5sum "$PATCH" >"$PATCH.md5sum";
31 sha1sum "$PATCH" >"$PATCH.sha1sum";
  /frameworks/av/media/libstagefright/codecs/aacdec/
s_patch.h 104 struct PATCH
sbr_create_limiter_bands.h 83 struct PATCH Patch,
calc_sbr_envelope.h 132 struct PATCH Patch,
s_sbr_dec.h 129 struct PATCH Patch; /* Used by sbr_generate_high_freq */
sbr_generate_high_freq.h 131 struct PATCH * Patch,
sbr_create_limiter_bands.cpp 138 struct PATCH Patch,
156 Int32 noPatches = Patch.noOfPatches;
163 patchBorders[i] = Patch.targetStartBand[i] - lowSubband;
sbr_generate_high_freq.cpp 208 struct PATCH *Patch,
213 Int32 patch; local
342 /* First patch */
347 patch = 0;
354 Patch->targetStartBand[patch] = targetStopBand;
356 numBandsInPatch = goalSb - targetStopBand; /* get the desired range of the patch */
360 /* desired number bands are not available -> patch whole source range */
397 if ((numBandsInPatch < 3) && (patch > 0)
    [all...]
calc_sbr_envelope.cpp 238 struct PATCH Patch,
348 Patch,
    [all...]
  /ndk/build/tools/
patch-sources.sh 18 # Script used to patch a source directory from a series of patches
25 "Patch a target source directory with a series of patches taken
27 is found under <patches-dir>/subdir/foo.patch will be applied with
28 'patch -p1' in <src-dir>/subdir.
60 PATCHES=`(cd $PATCHES_DIR && find . -name "*.patch" | sort ) 2> /dev/null`
66 for PATCH in $PATCHES; do
67 PATCHDIR=`dirname $PATCH`
68 PATCHNAME=`basename $PATCH`
70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $PATCHES_DIR/$PATCH
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
setChangeLogDateAndReviewer.pl 38 patch => <<'END',
39 Subject: [PATCH]
56 Subject: [PATCH]
77 patch => <<'END',
78 Subject: [PATCH]
95 Subject: [PATCH]
120 my $patch = $testCase->{patch};
124 my $got = VCSUtils::setChangeLogDateAndReviewer($patch, $reviewer, $epochTime);
  /external/openssh/contrib/aix/
buildbff.sh 130 PATCH=`echo $VERSION | cut -f 1 -d p | cut -f 3 -d .`
132 [ "$PATCH" = "" ] && PATCH=0
134 BFFVERSION=`printf "%d.%d.%d.%d" $MAJOR $MINOR $PATCH $PORTABLE`
  /external/opencv/cv/src/
cvsurf.cpp 348 uchar PATCH[PATCH_SZ+1][PATCH_SZ+1], RS_PATCH[RS_PATCH_SZ][RS_PATCH_SZ];
353 CvMat _patch = cvMat(PATCH_SZ+1, PATCH_SZ+1, CV_8U, PATCH);
477 float vx = (PATCH[i][j+1] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i+1][j])*dw;
478 float vy = (PATCH[i+1][j] - PATCH[i][j] + PATCH[i+1][j+1] - PATCH[i][j+1])*dw
    [all...]
  /external/v8/tools/
common-includes.sh 38 PATCH_FILE="$PERSISTFILE_BASENAME-patch"
39 PATCH_OUTPUT_FILE="$PERSISTFILE_BASENAME-patch-output"
147 for v in MAJOR MINOR BUILD PATCH; do
156 echo -n "Please enter the email address of a V8 reviewer for your patch: "
165 change. (If you need to iterate on the patch or double check that it's \
176 # Takes a file containing the patch to apply as first argument.
178 patch -p1 < "$1" > "$PATCH_OUTPUT_FILE" || \
179 { cat "$PATCH_OUTPUT_FILE" && die "Applying the patch failed."; }
merge-to-branch.sh 35 TEMPORARY_PATCH_FILE="$PERSISTFILE_BASENAME-temporary-patch"
51 -p Specify a patch file to apply as part of the merge
102 die "Either a patch file or revision numbers must be specified"
114 echo ">>> Step $CURRENT_STEP: Create a fresh branch for the patch."
135 NEW_COMMIT_MSG="Applied patch to $MERGE_TO_BRANCH branch."
169 echo "Applying patch for $HASH to $MERGE_TO_BRANCH..."
189 restore_if_unset "PATCH"
190 NEWPATCH=$(($PATCH + 1))
  /external/webkit/Tools/Scripts/
VCSUtils.pm 347 # Some users have a workflow where svn-create-patch, svn-apply and
626 } elsif (/^GIT binary patch$/ ) {
720 # The "from" clause is created by svn-create-patch, in
816 # that, if necessary, the text of an SVN or Git patch can be
844 # Parse one diff from a patch file created by svn-create-patch, and
887 # Then assume all diffs in the patch are Git-formatted. This
889 # all diffs in the patch are formatted the same (SVN or Git).
909 # modified or patch(1) will complain. So, we only modify non-chunk range lines.
    [all...]
resolve-ChangeLogs 327 my $patch;
329 # Read in patch for incorrectly merged ChangeLog entry
333 $patch = <GIT>;
341 # The patch must have 0 or more lines of context, then 1 or more lines
343 if ($patch =~ /\n@@ -(\d+),(\d+) \+(\d+),(\d+) @@\n( .*\n)*((\+.*\n)+)( .*\n)+$/m) {
344 # Copy the header from the original patch.
345 my $newPatch = substr($patch, 0, index($patch, "@@ -${1},${2} +${3},${4} @@"));
347 # Generate a new set of line numbers and patch lengths. Our new
348 # patch will start with the lines for the fixed ChangeLog entry
    [all...]

Completed in 292 milliseconds