Searched refs:diff (Results 251 - 275 of 485) sorted by relevance

<<11121314151617181920

/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffWithMockFiles.pl30 diff --git a/Makefile b/Makefile
39 diff --git a/Makefile b/Makefile
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_result_writer.py104 FILENAME_SUFFIX_DIFF = "-diff"
106 FILENAME_SUFFIX_PRETTY_PATCH = "-pretty-diff.html"
107 FILENAME_SUFFIX_IMAGE_DIFF = "-diff.png"
178 # It might be better to extract code which does 'diff' and make it a separate function.
187 # We treat diff output as binary. Diff output may contain multiple files
189 diff = self._port.diff_text(expected_text, actual_text, expected_filename, actual_filename)
191 fs.write_binary_file(diff_filename, diff)
198 # Use WebKit's PrettyPatch.rb to get an HTML diff.
213 """Writes the visual diff of the expected/actual PNGs.
217 # FIXME: This function is actually doing the diff a
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_core.c339 WebRtc_Word16 diff, nr, pos; local
635 // diff = "global" speech mean - "global" noise mean
636 diff = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(smid, 9);
638 diff -= tmp16;
640 if (diff < kMinimumDifference[n])
643 tmp16 = kMinimumDifference[n] - diff; // Q5
645 // tmp16_1 = ~0.8 * (kMinimumDifference - diff) in Q7
646 // tmp16_2 = ~0.2 * (kMinimumDifference - diff) in Q7
/external/chromium/testing/gmock/scripts/
H A Dupload.py21 Diff options are passed to the diff command of the underlying system.
28 It is important for Git/Mercurial users to specify a tree/node/branch to diff
452 help="Branch/tree/revision to diff against (used by DVCS).")
600 """Return the current diff as a string.
603 args: Extra arguments to pass to the diff command.
632 the contents of the new file, since the diff output won't contain
642 def GetBaseFiles(self, diff):
651 for line in diff.splitlines(True):
791 cmd = ["svn", "diff"]
802 ErrorExit("No valid patches found in output from svn diff")
[all...]
/external/chromium/testing/gtest/scripts/
H A Dupload.py21 Diff options are passed to the diff command of the underlying system.
28 It is important for Git/Mercurial users to specify a tree/node/branch to diff
452 help="Branch/tree/revision to diff against (used by DVCS).")
600 """Return the current diff as a string.
603 args: Extra arguments to pass to the diff command.
632 the contents of the new file, since the diff output won't contain
642 def GetBaseFiles(self, diff):
651 for line in diff.splitlines(True):
791 cmd = ["svn", "diff"]
802 ErrorExit("No valid patches found in output from svn diff")
[all...]
/external/aac/libSBRdec/src/
H A Denv_calc.cpp1186 int diff; local
1189 diff = (int) (nrgGain_e[band] - filtBuffer_e[band]);
1190 if (diff>0) {
1191 filtBuffer[band] >>= diff; /* Compensate for the scale change by shifting the mantissa. */ local
1192 filtBuffer_e[band] += diff; /* New gain is bigger, use its exponent */
1194 else if (diff<0) {
1200 if ((-diff) <= reserve) {
1204 filtBuffer[band] <<= (-diff);
1205 filtBuffer_e[band] += diff; /* becomes equal to *ptrNewExp */
1212 diff
1213 nrgGain[band] >>= diff; local
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc231 const int diff = get<0>(value) - get<1>(value); local
232 if (diff > 0) {
233 *listener << "where the first value is " << diff local
236 return diff < 0;
264 const int diff = lhs - rhs_; local
265 if (diff > 0) {
266 *listener << "which is " << diff << " more than " << rhs_;
267 } else if (diff == 0) {
270 *listener << "which is " << -diff << " less than " << rhs_;
632 *result_listener->stream() << "diff
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
H A DConfigResultsElement.java444 int diff = (int) Math.abs(baselineValue - buildValue);
445 if (diff < 100) {
455 localBuffer.append(diff);
/external/icu4c/common/
H A Dbytestriebuilder.cpp122 int32_t diff=uprv_memcmp(thisString.data(), otherString.data(), commonLength); local
123 return diff!=0 ? diff : lengthDiff;
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java423 int diff = newTdLen - oldTdLen;
425 if (diff > 0)
431 if (diff > 0)
/external/qemu/telephony/
H A Dsysdeps_posix.c440 SysTime diff = first->when - now; local
441 timeout->tv_sec = diff / 1000;
442 timeout->tv_usec = (diff - timeout->tv_sec*1000) * 1000;
/external/webkit/PerformanceTests/SunSpider/resources/
H A Dsunspider-compare-results.js304 var diff = mean2 - mean1;
305 var percentage = 100 * diff / mean1;
306 var isFaster = diff < 0;
/external/e2fsprogs/lib/et/
H A DMakefile.in123 diff -c $(srcdir)/test_cases/$$t.c $$t.c > $$t.failed; \
125 diff -c $(srcdir)/test_cases/$$t.h $$t.h >> $$t.failed; \
/external/libvpx/examples/includes/geshi/geshi/
H A Ddiff.php3 * diff.php
/external/libvpx/vp8/common/ppc/
H A Drecon_altivec.asm24 addi \Diff, \Diff, 32 ;# next diff
100 addi r3, r3, 32; ;# next diff
/external/libvpx/vp8/encoder/
H A Dencodeintra.c45 RECON_INVOKE(&rtcd->common->recon, recon)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
/external/skia/src/effects/
H A DSkColorFilters.cpp291 int diff = max - value; local
292 // clear diff if diff is positive
293 diff &= diff >> 31;
295 return value + diff;
/external/webkit/Source/WebCore/css/
H A DCSSStyleDeclaration.cpp131 void CSSStyleDeclaration::diff(CSSMutableStyleDeclaration* style) const function in class:WebCore::CSSStyleDeclaration
/external/webkit/Source/WebCore/inspector/front-end/
H A DDetailedHeapshotGridNodes.js527 var diff = dataGrid.snapshot.createDiff(this._name);
538 diff.pushBaseSelfSizes(baseSelfSizes);
539 diff.calculate(diffCalculated.bind(this));
543 diff.pushBaseIds(dataGrid.baseSnapshot.uid, baseIds);
/external/llvm/lib/MC/
H A DMCWin64EH.cpp56 const MCExpr *diff = MCBinaryExpr::CreateSub(MCSymbolRefExpr::Create( local
61 streamer.EmitAbsValue(diff, 1);
/external/llvm/unittests/Support/
H A DIntegersSubsetTest.cpp213 LHSMapping.diff(&LExclude, &Intersection, 0, RHSMapping);
237 RHSMapping.diff(0, &Intersection, &LExclude, LHSMapping);
/external/webkit/Source/WebCore/rendering/
H A DRenderFileUploadControl.cpp74 void RenderFileUploadControl::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
76 RenderBlock::styleDidChange(diff, oldStyle);
H A DRenderQuote.cpp322 void RenderQuote::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
328 RenderText::styleDidChange(diff, oldStyle);
H A DRenderReplaced.cpp68 void RenderReplaced::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
70 RenderBox::styleDidChange(diff, oldStyle);
H A DRenderWidget.cpp230 void RenderWidget::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
232 RenderReplaced::styleDidChange(diff, oldStyle);

Completed in 466 milliseconds

<<11121314151617181920