Searched refs:diff (Results 101 - 125 of 478) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.h65 void diff(Module *L, Module *R);
66 void diff(Function *L, Function *R);
/external/mesa3d/src/glsl/glcpp/tests/
H A Dglcpp-test19 diff -u $test.expected $test.out
/external/openssh/regress/
H A DMakefile88 ${TEST_SSH_SSHKEYGEN} -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv
90 ${TEST_SSH_SSHKEYGEN} -if ${.OBJDIR}/rsa_ssh2_cr.prv | diff - ${.CURDIR}/rsa_openssh.prv
92 ${TEST_SSH_SSHKEYGEN} -if ${.OBJDIR}/rsa_ssh2_crnl.prv | diff - ${.CURDIR}/rsa_openssh.prv
97 ${TEST_SSH_SSHKEYGEN} -yf $(OBJ)/t2.out | diff - ${.CURDIR}/rsa_openssh.pub
101 ${TEST_SSH_SSHKEYGEN} -if $(OBJ)/t3.out | diff - ${.CURDIR}/rsa_openssh.pub
105 awk '{print $$2}' | diff - ${.CURDIR}/t4.ok
109 awk '{print $$2}' | diff - ${.CURDIR}/t5.ok
115 ${TEST_SSH_SSHKEYGEN} -yf $(OBJ)/t6.out1 | diff - $(OBJ)/t6.out2
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGShadowTreeRootContainer.cpp93 void RenderSVGShadowTreeRootContainer::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
95 RenderSVGTransformableContainer::styleDidChange(diff, oldStyle);
/external/webkit/Source/WebCore/svg/
H A DSVGAnimateMotionElement.cpp215 FloatSize diff = m_toPoint - m_fromPoint; local
216 transform->translate(diff.width() * percentage + m_fromPoint.x(), diff.height() * percentage + m_fromPoint.y());
258 FloatSize diff = to - from;
259 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java313 private String diff = null; field in class:TestCertUtils.TestCertificate
327 public TestCertificate(String diff) { argument
329 this.diff = diff;
334 * diff. Leave the <code>diff</code> null when no difference needed.
336 * @param diff
339 public TestCertificate(String diff, String type) { argument
341 this.diff = diff;
[all...]
/external/qemu/distrib/libpng-1.2.19/
H A Dpnggccrd.c123 * - made "diff" variable (now "_dif") global to simplify conversion of
124 * filtering routines (running out of regs, sigh). "diff" is still used
327 * "diff"--see 19991120 entry above), using register constraints
1010 int diff; local
1015 diff = (int) (png_ptr->width & 7); // amount lost
1079 // preload "movl diff, %%ecx \n\t" // (diff is in eax)
1110 : "0" (diff), // eax // input regs
1133 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1145 if (diff) /* numbe
1176 int diff; local
1306 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1347 int diff; local
1440 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1649 int diff; local
1757 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1798 int diff; local
1947 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
1988 int diff = (int) (png_ptr->width & 7); /* amount lost */ local
3253 int diff; // __attribute__((used)); local
4018 int diff; // __attribute__((used)); local
5131 int diff; // __attribute__((used)); local
[all...]
/external/stlport/test/unit/cppunit/
H A Dcppunit_mini.h79 double diff = in_expected - in_real; local
80 if (diff < 0.) {
81 diff = -diff;
83 return diff < in_maxErr;
/external/webkit/Source/WebCore/rendering/
H A DRenderScrollbarPart.cpp129 void RenderScrollbarPart::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
131 RenderBlock::styleWillChange(diff, newStyle);
135 void RenderScrollbarPart::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
137 RenderBlock::styleDidChange(diff, oldStyle);
142 if (oldStyle && m_scrollbar && m_part != NoPart && diff >= StyleDifferenceRepaint)
H A DRenderButton.cpp75 void RenderButton::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) argument
84 RenderBlock::styleWillChange(diff, newStyle);
87 void RenderButton::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
89 RenderBlock::styleDidChange(diff, oldStyle);
/external/webrtc/src/modules/audio_processing/utility/
H A Ddelay_estimator.c310 int32_t diff = new_value - *mean_value; local
313 if (diff < 0) {
314 diff = -((-diff) >> factor);
316 diff = (diff >> factor);
318 *mean_value += diff;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedField.java136 int diff = fieldIdx - lastIndex;
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
149 out.writeUleb128(diff);
/external/skia/src/views/
H A DSkScrollBarView.cpp89 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
91 if (diff == SkAnimator::kDifferent)
93 else if (diff == SkAnimator::kPartiallyDifferent)
/external/webkit/Source/WebKit/android/smoke/
H A DMessageThread.cpp110 double diff = next->m_when - now; local
111 if (diff > 0) {
114 static_cast<nsecs_t>(diff * 1000000) /* nanos */);
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java363 Vector3f diff = points[i].subtract(center);
364 float radiusSqr = diff.lengthSquared();
582 Vector3f diff = temp_center.subtract(center, vars.vect1);
583 float lengthSquared = diff.lengthSquared();
612 rCenter.set(center.addLocal(diff.multLocal(coeff)));
678 Vector3f diff = center.subtract(bs.center, vars.vect1);
680 boolean eq = (diff.dot(diff) <= rsum * rsum);
724 Vector3f diff = vars.vect1.set(ray.getOrigin()).subtractLocal(center);
726 float a = diff
[all...]
/external/bluetooth/glib/tests/
H A Drun-markup-tests.sh35 diff ${srcdir:-.}/markups/expected-$I actual || fail "unexpected output on $F"
/external/chromium/chrome/browser/prefs/
H A Dpref_value_map.cc114 const int diff = this_pref->first.compare(other_pref->first); local
115 if (diff == 0) {
120 } else if (diff < 0) {
123 } else if (diff > 0) {
/external/elfutils/tests/
H A Dtest-subr.sh64 diff -u $outfile -
65 # diff's exit status will kill the script.
H A Drun-readelf-test1.sh39 diff -u - testfile.temp <<EOF
/external/libvpx/vp8/encoder/ppc/
H A Dencodemb_altivec.asm15 ;# r3 short *diff
56 stvx v3, 0, r3 ;# store out diff
65 stvx v3, r10, r3 ;# store out diff
93 stvx v3, 0, r3 ;# store out diff
102 stvx v3, r10, r3 ;# store out diff
112 ;# r3 short *diff
138 stvx v3, 0, r3 ;# store out diff
145 stvx v3, r10, r3 ;# store out diff
/external/llvm/utils/
H A Dfindoptdiff81 diff "$opt1ll" "$opt2ll" > $diffs
/external/skia/include/core/
H A DSkMath.h101 int diff = max - value;
102 // clear diff if diff is positive
103 diff &= diff >> 31;
105 return value + diff;
/external/srec/srec/clib/
H A Dswimodel.c414 prdata diff; local
426 diff = *(means++) - *(dvec++);
427 pval -= diff * diff;
/external/valgrind/main/nightly/bin/
H A Dnightly95 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
213 diff -C1 old.short new.short > diff.short
238 cat diff.short >> final
245 diff_files=`find . -name '*.diff*' | sort`
/external/dropbear/libtomcrypt/
H A Dbuild.sh10 for f in *_tv.txt; do if (diff --ignore-case $f notes/$f) then true; else (echo "tv_gen $f failed" && rm -f testok.txt && exit 1); fi; done

Completed in 523 milliseconds

1234567891011>>