Searched refs:diff (Results 201 - 225 of 1000) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddenoising.c32 * pixel adjustments vs. pixel diff value ahead of time.
34 * = (filter_coefficient * diff + 128) >> 8
42 * The adjustment vs. diff curve becomes flat very quick when diff increases.
47 * diff adjustment w/o motion correction adjustment w/ motion correction
51 * [-3, 3] diff diff
93 int diff = 0; local
97 diff = mc_running_avg_y[c] - sig[c];
98 absdiff = abs(diff);
180 int diff = mc_running_avg_y[c] - sig[c]; local
270 int diff = 0; local
330 int diff = mc_running_avg_uv[c] - sig[c]; local
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dpreamble_patcher_test.cc312 __int64 diff = 0; local
317 diff = reinterpret_cast<__int64>(p1) - reinterpret_cast<__int64>(b1);
319 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
322 diff = reinterpret_cast<__int64>(p2) - reinterpret_cast<__int64>(b2);
323 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dpreamble_patcher_test.cc312 __int64 diff = 0; local
317 diff = reinterpret_cast<__int64>(p1) - reinterpret_cast<__int64>(b1);
319 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
322 diff = reinterpret_cast<__int64>(p2) - reinterpret_cast<__int64>(b2);
323 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
/external/iputils/
H A Dping_common.h234 __u16 diff = (__u16)ntransmitted - acked; local
235 return (diff<=0x7FFF) ? diff : ntransmitted-nreceived-nerrors;
240 __u16 diff = (__u16)ntransmitted - seq; local
241 if (diff <= 0x7FFF) {
242 if ((int)diff+1 > pipesize)
243 pipesize = (int)diff+1;
/external/libnl/lib/genl/
H A Dfamily.c133 int diff = 0; local
137 diff |= FAM_DIFF(ID, a->gf_id != b->gf_id);
138 diff |= FAM_DIFF(VERSION, a->gf_version != b->gf_version);
139 diff |= FAM_DIFF(HDRSIZE, a->gf_hdrsize != b->gf_hdrsize);
140 diff |= FAM_DIFF(MAXATTR, a->gf_maxattr != b->gf_maxattr);
141 diff |= FAM_DIFF(NAME, strcmp(a->gf_name, b->gf_name));
145 return diff;
/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/chromium_org/chrome/browser/chromeos/login/screens/
H A Dhost_pairing_screen.cc37 base::DictionaryValue diff;
38 context_.GetChangesAndReset(&diff);
40 actor_->OnContextChanged(diff);
/external/chromium_org/chrome/test/ispy/server/
H A Dmain_view_handler.py113 diff = ispy_utils.GetFailurePath(test_run, res['expectation'], 'diff.png')
116 res['diff_path'] = diff
119 res['diff'] = ispy.cloud_bucket.GetImageURL(diff)
/external/chromium_org/third_party/libyuv/unit_test/
H A Dscale_test.cc265 int diff = TestFilter(benchmark_width_, benchmark_height_, \
269 EXPECT_LE(diff, max_diff); \
272 int diff = TestFilter_16(benchmark_width_, benchmark_height_, \
276 EXPECT_LE(diff, max_diff); \
296 int diff = TestFilter(benchmark_width_, benchmark_height_, \
299 EXPECT_LE(diff, max_diff); \
302 int diff = TestFilter(width, height, \
305 EXPECT_LE(diff, max_diff); \
308 int diff = TestFilter_16(benchmark_width_, benchmark_height_, \
311 EXPECT_LE(diff, max_dif
[all...]
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTInv_CCSToR_S16_Sfs_s.S69 #define diff r9 define
184 SUB diff,scale,order
185 M_STR diff, diffOnStack
204 SUB diff, scale, order @ scale > order
212 CMP diff,#0
213 M_STR diff, diffOnStack
262 M_LDR diff, diffOnStack
263 CMP diff,#0
266 RSB diff,diff,#
[all...]
/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_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/openmax_dl/dl/sp/src/x86/
H A DomxSP_FFTInit_R_F32.c54 OMX_INT diff; local
81 diff = 1 << (TWIDDLE_TABLE_ORDER - order + 1);
88 for (i = 0, j = 0; i <= NBy4 >> 1; ++i, j += diff) {
/external/chromium_org/third_party/opus/src/silk/
H A Dstereo_MS_to_LR.c45 opus_int32 sum, diff, pred0_Q13, pred1_Q13; local
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff );
/external/chromium_org/third_party/skia/src/views/animated/
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/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dvideo_decimator.cc137 int64_t diff = now - incoming_frame_times_[num-1]; local
139 if (diff > 0) {
140 incoming_frame_rate_ = nrOfFrames * 1000.0f / static_cast<float>(diff);
/external/chromium_org/tools/
H A Dsort-headers.py8 Shows a diff and prompts for confirmation before doing the deed.
125 outfile.close() # Important so the below diff gets the updated contents.
141 """Shows a diff of what the tool would change the file named
147 diff = os.system('diff -u %s %s' % (filename, fixfilename))
149 diff >>= 8
150 if diff == 0: # Check exit code.
/external/chromium_org/ui/base/
H A Dlayout.cc75 float diff = std::abs(kScaleFactorScales[scale_factor] - scale); local
76 if (diff < smallest_diff) {
78 smallest_diff = 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/eigen/Eigen/src/Eigen2Support/Geometry/
H A DParametrizedLine.h73 VectorType diff = p-origin(); local
74 return (diff - diff.eigen2_dot(direction())* direction()).squaredNorm();
/external/libopus/silk/
H A Dstereo_MS_to_LR.c45 opus_int32 sum, diff, pred0_Q13, pred1_Q13; local
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff );
/external/skia/src/views/animated/
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/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-diff.c2 * builtin-diff.c
4 * Builtin diff command: Analyze two perf.data input files, look up and read
5 * DSOs and symbol information, sort them and produce a diff.
119 .name = "Weighted diff",
231 pair->diff.period_ratio_delta = new_percent - old_percent;
232 pair->diff.computed = true;
233 return pair->diff.period_ratio_delta;
241 pair->diff.computed = true;
242 pair->diff.period_ratio = new_period / old_period;
243 return pair->diff
787 double diff; local
[all...]
/external/chromium_org/base/metrics/
H A Dhistogram_samples.cc121 void HistogramSamples::IncreaseSum(int64 diff) { argument
122 sum_ += diff;
125 void HistogramSamples::IncreaseRedundantCount(HistogramBase::Count diff) { argument
127 subtle::NoBarrier_Load(&redundant_count_) + 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 5759 milliseconds

1234567891011>>