Searched refs:diff (Results 51 - 75 of 1000) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/
H A Dgit-skia-verify19 # It would delete {before,after,diff} directory under the current directory,
21 # After it's done, check out diff/index.html for the possible differences.
48 git diff --exit-code > /dev/null
54 git diff --cached --exit-code > /dev/null
62 rm -rf {before,after,diff}
63 mkdir {before,after,diff}
95 ./out/Release/skdiff before after diff
/external/skia/tools/
H A Dgit-skia-verify19 # It would delete {before,after,diff} directory under the current directory,
21 # After it's done, check out diff/index.html for the possible differences.
48 git diff --exit-code > /dev/null
54 git diff --cached --exit-code > /dev/null
62 rm -rf {before,after,diff}
63 mkdir {before,after,diff}
95 ./out/Release/skdiff before after diff
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dsplitting_filter.c69 int32_t diff; local
76 // "diff" should be safe from wrap around since max values are 2^25
77 // diff = (x[0] - y_1[-1])
78 diff = WebRtcSpl_SubSatW32(in_data[0], filter_state[1]);
80 out_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, filter_state[0]);
85 // diff = (x[n] - y_1[n-1])
86 diff = WebRtcSpl_SubSatW32(in_data[k], out_data[k - 1]);
88 out_data[k] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, in_data[k - 1]);
96 // diff = (y_1[0] - y_2[-1])
97 diff
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dsplitting_filter.c67 WebRtc_Word32 diff; local
74 // "diff" should be safe from wrap around since max values are 2^25
75 diff = WEBRTC_SPL_SUB_SAT_W32(in_data[0], filter_state[1]); // = (x[0] - y_1[-1])
77 out_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, filter_state[0]);
82 diff = WEBRTC_SPL_SUB_SAT_W32(in_data[k], out_data[k - 1]); // = (x[n] - y_1[n-1])
84 out_data[k] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[0], diff, in_data[k - 1]);
92 diff = WEBRTC_SPL_SUB_SAT_W32(out_data[0], filter_state[3]); // = (y_1[0] - y_2[-1])
94 in_data[0] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[1], diff, filter_state[2]);
97 diff = WEBRTC_SPL_SUB_SAT_W32(out_data[k], in_data[k - 1]); // =(y_1[n] - y_2[n-1])
99 in_data[k] = WEBRTC_SPL_SCALEDIFF32(filter_coefficients[1], diff, out_dat
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
H A Dvp9_idct32x32_1_add_neon.asm32 ADD_DIFF_16x8 $diff
33 vqadd.u8 q8, q8, $diff
34 vqadd.u8 q9, q9, $diff
35 vqadd.u8 q10, q10, $diff
36 vqadd.u8 q11, q11, $diff
37 vqadd.u8 q12, q12, $diff
38 vqadd.u8 q13, q13, $diff
39 vqadd.u8 q14, q14, $diff
40 vqadd.u8 q15, q15, $diff
44 SUB_DIFF_16x8 $diff
[all...]
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_idct32x32_1_add_neon.asm32 ADD_DIFF_16x8 $diff
33 vqadd.u8 q8, q8, $diff
34 vqadd.u8 q9, q9, $diff
35 vqadd.u8 q10, q10, $diff
36 vqadd.u8 q11, q11, $diff
37 vqadd.u8 q12, q12, $diff
38 vqadd.u8 q13, q13, $diff
39 vqadd.u8 q14, q14, $diff
40 vqadd.u8 q15, q15, $diff
44 SUB_DIFF_16x8 $diff
[all...]
/external/srec/srec/crec/
H A Dastar_pphash.c48 asr_int32_t diff = 0; local
52 diff = parp1->token_index - parp2->token_index;
58 diff = parp1->word - parp2->word;
59 if (diff)
66 diff = (intptr_t)parp1->next - (intptr_t)parp2->next;
69 if (diff)
70 diff = (diff < 0 ? -1 : 1);
71 return diff;
/external/aac/libAACenc/src/
H A Dquantize.cpp304 FIXP_DBL diff; local
323 diff = fixp_abs(fixp_abs(invQuantSpec) - fixp_abs(mdctSpectrum[i]>>1));
325 scale = CountLeadingBits(diff);
326 diff = scaleValue(diff, scale);
327 diff = fPow2(diff);
330 diff = scaleValue(diff, -scale);
332 xfsf = xfsf + diff;
359 FIXP_DBL diff; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dftfy.sh14 -n, --dry-run Shows a diff of the changes to be made.
71 diff -u "$ORIG_COMMIT_MSG" "$NEW_COMMIT_MSG" | tail -n +3
94 ORIG_DIFF=orig.diff.$$
95 MODIFIED_DIFF=modified.diff.$$
96 FINAL_DIFF=final.diff.$$
111 if ! git diff --quiet HEAD; then
119 # Collect the original diff
122 # Apply the style guide on new and modified files and collect its diff
123 for f in $(git diff HEAD^ --name-only -M90 --diff
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dinvtrans.h28 static void eob_adjust(char *eobs, short *diff) argument
34 if((eobs[js] == 0) && (diff[0] != 0))
36 diff+=16;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_sse2.c34 short *diff, unsigned char *predictor,
40 short *diff = &be->src_diff[0]; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
/external/chromium_org/third_party/webrtc/base/
H A Dversionparsing.cc49 int diff = version1[i] - version2[i]; local
50 if (diff != 0) {
51 return diff;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dlsp_to_lsf.c34 int16_t diff; /* diff between table value and desired value (Q15) */ local
62 /* Calculate diff, which is used in the linear approximation of acos(x) */
63 diff = (*lspPtr)-(*cosTblPtr);
71 tmp = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(WebRtcIlbcfix_kAcosDerivative[k],diff, 11);
/external/elfutils/0.153/src/
H A Dsectionhash.c49 GElf_Sxword diff = (SH_FLAGS_IMPORTANT (one->flags) local
51 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
/external/libvpx/libvpx/tools/
H A Dftfy.sh14 -n, --dry-run Shows a diff of the changes to be made.
71 diff -u "$ORIG_COMMIT_MSG" "$NEW_COMMIT_MSG" | tail -n +3
94 ORIG_DIFF=orig.diff.$$
95 MODIFIED_DIFF=modified.diff.$$
96 FINAL_DIFF=final.diff.$$
111 if ! git diff --quiet HEAD; then
119 # Collect the original diff
122 # Apply the style guide on new and modified files and collect its diff
123 for f in $(git diff HEAD^ --name-only -M90 --diff
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dinvtrans.h28 static void eob_adjust(char *eobs, short *diff) argument
34 if((eobs[js] == 0) && (diff[0] != 0))
36 diff+=16;
/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_sse2.c34 short *diff, unsigned char *predictor,
40 short *diff = &be->src_diff[0]; local
42 vp8_subtract_b_sse2_impl(z, src_stride, diff, predictor, pitch);
/external/smack/src/org/jivesoftware/smackx/workgroup/util/
H A DModelUtil.java234 public static String getTimeFromLong(long diff) { argument
243 diff = diff % MS_IN_A_DAY;
244 long numHours = diff / MS_IN_AN_HOUR;
245 diff = diff % MS_IN_AN_HOUR;
246 long numMinutes = diff / MS_IN_A_MINUTE;
247 diff = diff % MS_IN_A_MINUTE;
248 long numSeconds = diff / MS_IN_A_SECON
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DCollectionItemsCache.h55 static void reportExtraMemoryCostForCollectionItemsCache(ptrdiff_t diff) argument
57 v8::Isolate::GetCurrent()->AdjustAmountOfExternalAllocatedMemory(diff);
73 if (ptrdiff_t diff = allocationSize())
74 reportExtraMemoryCostForCollectionItemsCache(-diff);
100 if (ptrdiff_t diff = allocationSize() - oldCapacity)
101 reportExtraMemoryCostForCollectionItemsCache(diff);
/external/arduino/hardware/arduino/cores/arduino/
H A DWMath.cpp50 long diff = howbig - howsmall; local
51 return random(diff) + howsmall;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBR.cpp53 void RenderBR::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
55 RenderText::styleDidChange(diff, oldStyle);
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTFwd_CToC_SC16_Sfs_s.S91 #define diff r9 define
152 SUBS diff,scale,order
153 M_STR diff,diffOnStack
191 SUBS diff, scale, order @// scale > order
206 CMP diff,#0
207 M_STR diff, diffOnStack
259 SUB diff,order,scale
260 TST diff,#0x01
261 ADDEQ count,scale,diff,LSR #1 @// count = scale + (order - scale)/2
270 CMP diff,#
[all...]
H A DomxSP_FFTInv_CToC_SC16_Sfs_s.S91 #define diff r9 define
153 SUB diff,scale,order
154 M_STR diff, diffOnStack
173 SUBS diff, scale, order @// scale > order
188 CMP diff,#0
189 M_STR diff, diffOnStack
241 SUB diff,order,scale
242 TST diff,#0x01
243 ADDEQ count,scale,diff,LSR #1 @// count = scale + (order - scale)/2
252 CMP diff,#
[all...]
/external/libunwind/scripts/
H A Dkernel-diff.sh9 diff -up $left $right
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseGitDiffHeader.pl38 diff --git a/foo.h b/foo.h
62 diff --git a/foo.h b/foo.h
88 diff --git a/foo b/foo
95 diff --git a/configure.ac b/configure.ac
116 diff --git foo.h foo.h
142 diff --git a/foo b/foo_new
146 diff --git a/bar b/bar
160 "diff --git a/bar b/bar\n"],
166 diff --git a/foo b/foo_new
170 diff
[all...]

Completed in 2379 milliseconds

1234567891011>>