Searched defs:diff (Results 51 - 75 of 623) sorted by relevance

1234567891011>>

/external/webp/src/utils/
H A Drandom.h41 int diff; local
43 diff = rg->tab_[rg->index1_] - rg->tab_[rg->index2_];
44 if (diff < 0) diff += (1u << 31);
45 rg->tab_[rg->index1_] = diff;
49 diff = (int)((uint32_t)diff << 1) >> (32 - num_bits);
50 diff = (diff * amp) >> VP8_RANDOM_DITHER_FIX; // restrict range
51 diff
[all...]
/external/webrtc/src/common_audio/signal_processing/
H A Dresample_by_2_internal.c34 WebRtc_Word32 tmp0, tmp1, diff; local
43 diff = tmp0 - state[1];
45 diff = (diff + (1 << 13)) >> 14;
46 tmp1 = state[0] + diff * kResampleAllpass[1][0];
48 diff = tmp1 - state[2];
50 diff = diff >> 14;
51 if (diff < 0)
52 diff
129 WebRtc_Word32 tmp0, tmp1, diff; local
203 WebRtc_Word32 tmp0, tmp1, diff; local
273 WebRtc_Word32 tmp0, tmp1, diff; local
343 WebRtc_Word32 tmp0, tmp1, diff; local
422 WebRtc_Word32 tmp0, tmp1, diff; local
555 WebRtc_Word32 tmp0, tmp1, diff; local
[all...]
/external/bison/lib/
H A Dstrverscmp.c34 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
67 int diff; local
103 while ((diff = c1 - c2) == 0 && c1 != '\0')
116 return diff;
123 return ISDIGIT (*p2) ? -1 : diff;
/external/blktrace/
H A Dstrverscmp.c79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
95 int diff; local
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
144 return diff;
151 return isdigit (*p2) ? -1 : diff;
/external/ceres-solver/internal/ceres/
H A Diterative_schur_complement_solver_test.cc101 double diff = (isc_sol - reference_solution).norm(); local
102 if (diff < kEpsilon) {
107 << " solution by " << diff << " which is more than " << kEpsilon;
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dbase_screen.cc53 void BaseScreen::OnContextChanged(const base::DictionaryValue* diff) { argument
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dhost_pairing_screen_handler.cc101 const base::DictionaryValue& diff) {
103 context_cache_.ApplyChanges(diff, NULL);
106 CallJS(kMethodContextChanged, diff);
100 OnContextChanged( const base::DictionaryValue& diff) argument
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
/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/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DSVGRenderStyle.cpp118 StyleDifference SVGRenderStyle::diff(const SVGRenderStyle* other) const function in class:blink::SVGRenderStyle
/external/chromium_org/third_party/icu/source/i18n/
H A Dbocsu.cpp31 u_writeDiff(int32_t diff, uint8_t *p) { argument
32 if(diff>=SLOPE_REACH_NEG_1) {
33 if(diff<=SLOPE_REACH_POS_1) {
34 *p++=(uint8_t)(SLOPE_MIDDLE+diff);
35 } else if(diff<=SLOPE_REACH_POS_2) {
36 *p++=(uint8_t)(SLOPE_START_POS_2+(diff/SLOPE_TAIL_COUNT));
37 *p++=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
38 } else if(diff<=SLOPE_REACH_POS_3) {
39 p[2]=(uint8_t)(SLOPE_MIN+diff%SLOPE_TAIL_COUNT);
40 diff/
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dlint-hunks.py10 """Performs style checking on each diff hunk."""
17 import diff namespace
24 DIFF_CMD = ["git", "diff"]
25 DIFF_INDEX_CMD = ["git", "diff-index", "-u", "HEAD", "--"]
98 for hunk in diff.ParseDiffHunks(StringIO.StringIO(stdout)):
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/
H A DomxSP_FFTInit_C_FC32.c56 OMX_INT diff; local
104 diff = TWIDDLE_TABLE_ORDER - order;
106 step = 1 << diff;
H A DomxSP_FFTInit_C_SC16.c67 OMX_INT Nby2,N,M,diff,step; local
121 diff = 12 - order;
122 step = 1<<diff; /* step into the twiddle table for the current order */
H A DomxSP_FFTInit_C_SC32.c68 OMX_INT Nby2,N,M,diff, step; local
120 diff = 12 - order;
121 step = 1<<diff; /* step into the twiddle table for the current order */
/external/chromium_org/third_party/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/third_party/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_cpu.cpp17 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, function in class:SkDifferentPixelsMetric
H A DSkDifferentPixelsMetric_opencl.cpp20 "__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, \n"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeAlphaMask, function in class:SkDifferentPixelsMetric
86 // Queue this diff on the CL device
116 if (!this->loadKernelSource(kDifferentPixelsKernelSource, "diff", &fKernel)) {
/external/libvpx/libvpx/tools/
H A Dlint-hunks.py10 """Performs style checking on each diff hunk."""
17 import diff namespace
24 DIFF_CMD = ["git", "diff"]
25 DIFF_INDEX_CMD = ["git", "diff-index", "-u", "HEAD", "--"]
98 for hunk in diff.ParseDiffHunks(StringIO.StringIO(stdout)):
/external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
H A Dsched-pipe.c50 struct timeval start, stop, diff; local
85 timersub(&stop, &start, &diff);
99 result_usec = diff.tv_sec * 1000000;
100 result_usec += diff.tv_usec;
103 diff.tv_sec,
104 (unsigned long) (diff.tv_usec/1000));
115 diff.tv_sec,
116 (unsigned long) (diff.tv_usec / 1000));
/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/skia/tools/skpdiff/
H A DSkDifferentPixelsMetric_opencl.cpp20 "__kernel void diff(read_only image2d_t baseline, read_only image2d_t test, \n"
39 bool SkDifferentPixelsMetric::diff(SkBitmap* baseline, SkBitmap* test, bool computeMask, function in class:SkDifferentPixelsMetric
85 // Queue this diff on the CL device
115 if (!this->loadKernelSource(kDifferentPixelsKernelSource, "diff", &fKernel)) {
/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/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/chromium_org/base/prefs/
H A Dpref_value_map.cc136 const int diff = this_pref->first.compare(other_pref->first); local
137 if (diff == 0) {
142 } else if (diff < 0) {
145 } else if (diff > 0) {

Completed in 505 milliseconds

1234567891011>>