Searched refs:diff (Results 151 - 175 of 1000) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vp8/encoder/x86/
H A Dvp8_enc_stubs_mmx.c69 short *diff, unsigned char *predictor,
75 short *diff = &be->src_diff[0]; local
77 vp8_subtract_b_mmx_impl(z, src_stride, diff, predictor, pitch);
/external/skia/src/views/animated/
H A DSkBorderView.cpp52 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
54 if (diff == SkAnimator::kDifferent)
56 else if (diff == SkAnimator::kPartiallyDifferent)
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_profile_syncable_service.cc318 bool diff = false; local
322 diff = true;
329 diff = UpdateMultivaluedField(NAME_FIRST,
330 specifics.name_first(), profile) || diff;
331 diff = UpdateMultivaluedField(NAME_MIDDLE,
332 specifics.name_middle(), profile) || diff;
333 diff = UpdateMultivaluedField(NAME_LAST,
334 specifics.name_last(), profile) || diff;
338 diff = UpdateMultivaluedField(NAME_FULL,
339 specifics.name_full(), profile) || diff;
[all...]
/external/aac/libSBRdec/src/
H A Dsbrdec_freq_sca.cpp102 static void CalcBands(UCHAR * diff, UCHAR start, UCHAR stop, UCHAR num_bands);
103 static SBR_ERROR modifyBands(UCHAR max_band, UCHAR * diff, UCHAR length);
104 static void cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress);
397 /* Adjust diff vector to get sepc. SBR range */
526 CalcBands(UCHAR * diff, /*!< Vector of widths to be calculated */ argument
552 diff[i] = previous - current;
562 cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress) argument
567 start_adress[i] = start_adress[i-1] + diff[i-1];
579 modifyBands(UCHAR max_band_previous, UCHAR * diff, UCHAR length) argument
581 int change = max_band_previous - diff[
[all...]
/external/aac/libSBRenc/src/
H A Dsbrenc_freq_sca.cpp102 static void CalcBands(INT * diff, INT start , INT stop , INT num_bands);
103 static INT modifyBands(INT max_band, INT * diff, INT length);
104 static void cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress);
528 /* Adjust diff vector to get sepc. SBR range */
559 CalcBands(INT * diff, INT start , INT stop , INT num_bands) argument
575 diff[i-1] = current-previous;
583 cumSum(INT start_value, INT* diff, INT length, UCHAR *start_adress) argument
588 start_adress[i]=start_adress[i-1]+diff[i-1];
593 modifyBands(INT max_band_previous, INT * diff, INT length) argument
595 INT change=max_band_previous-diff[
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DInterval.java125 Interval diff = null;
128 diff = Interval.create(Math.max(this.a,other.b+1),
134 diff = Interval.create(this.a, other.a-1);
136 return diff;
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dbase_screen.cc53 void BaseScreen::OnContextChanged(const base::DictionaryValue* diff) { argument
H A Dhost_pairing_screen_actor.h52 virtual void OnContextChanged(const base::DictionaryValue& diff) = 0;
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dcontroller_pairing_screen_handler.cc42 const base::DictionaryValue* diff) {
45 delegate_->OnScreenContextChanged(*diff);
130 const base::DictionaryValue& diff) {
131 CallJS(kMethodContextChanged, diff);
41 HandleContextChanged( const base::DictionaryValue* diff) argument
129 OnContextChanged( const base::DictionaryValue& diff) argument
H A Dhost_pairing_screen_handler.h35 virtual void OnContextChanged(const base::DictionaryValue& diff) OVERRIDE;
/external/chromium_org/content/browser/loader/
H A Dresource_buffer.cc83 int diff = alloc_end_ - alloc_start_; local
84 if (diff > 0)
85 return (buf_size_ - diff) >= min_alloc_size_;
87 return -diff >= min_alloc_size_;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGModelObject.cpp103 void RenderSVGModelObject::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) argument
105 if (diff.needsFullLayout()) {
111 RenderObject::styleDidChange(diff, oldStyle);
112 SVGResourcesCache::clientStyleChanged(this, diff, style());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DsetChangeLogDateAndReviewer.pl43 diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
60 diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
82 diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
99 diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dfiletools.cpp108 double diff; local
113 diff = difftime(modtime1, modtime2);
114 if (diff < 0.0) {
116 } else if (diff > 0.0) {
/external/chromium_org/third_party/skia/include/views/animated/
H A DSkProgressBarView.h26 void changeProgress(int diff);
/external/chromium_org/tools/gyp/test/variables/commands/
H A Dgyptest-commands-ignore-env.py43 test.diff(expect, contents, 'commands.gypd ')
/external/icu/icu4c/source/tools/toolutil/
H A Dfiletools.cpp108 double diff; local
113 diff = difftime(modtime1, modtime2);
114 if (diff < 0.0) {
116 } else if (diff > 0.0) {
/external/llvm/utils/
H A DMakefile14 EXTRA_DIST := check-each-file codegen-diff countloc.sh \
/external/openssl/crypto/engine/
H A Deng_int.h83 #define engine_ref_debug(e, isfunct, diff) \
86 ((isfunct) ? ((e)->funct_ref - (diff)) : ((e)->struct_ref - (diff))), \
92 #define engine_ref_debug(e, isfunct, diff)
/external/skia/include/views/animated/
H A DSkProgressBarView.h26 void changeProgress(int diff);
/external/srec/srec/Semproc/src/
H A DExpressionEvaluator.c115 int diff; local
122 diff = atoi(operands[0]);
124 diff -= atoi(operands[i]);
126 return litostr(diff, resultBuf, resultLen, BASE_10);
/external/tcpdump/tests/
H A DTESTrun.sh39 rm -f DIFF/$output.diff
48 cat DIFF/$output.diff >> failure-outputs.txt
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dencode.c52 int16_t diff, start_pos; local
92 diff = iLBCenc_inst->diff;
165 diff = STATE_LEN - iLBCenc_inst->state_short_len;
168 index += diff;
176 start_pos = (iLBCbits_inst->startIdx-1)*SUBL + diff;
204 mem+CB_MEML-ST_MEM_L_TBL, ST_MEM_L_TBL, diff,
212 diff
220 WebRtcSpl_MemCpyReversedOrder(&reverseResidual[diff-1],
221 &residual[(iLBCbits_inst->startIdx+1)*SUBL-STATE_LEN], diff);
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dfdct8x8_test.cc135 const int diff = abs(count_sign_block[j][0] - count_sign_block[j][1]); local
137 EXPECT_LT(diff, max_diff << (bit_depth_ - 8))
143 << " diff: " << diff; local
164 const int diff = abs(count_sign_block[j][0] - count_sign_block[j][1]); local
166 EXPECT_LT(diff, max_diff << (bit_depth_ - 8))
172 << " diff: " << diff; local
231 const int diff = local
234 const int diff
316 const int diff = local
389 const uint32_t diff = local
422 const uint32_t diff = coeff[j] - coeff_r[j]; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar ... .eclipse.core.databinding.observable.IDiff diff protected void fireStale (java.lang.Object) Object source ...

Completed in 705 milliseconds

1234567891011>>