Searched defs:absdiff (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Ddenoising.c33 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
83 int absdiff = 0; local
86 absdiff = abs(diff);
89 if (absdiff <= 3)
96 if (absdiff >= 4 && absdiff <= 7)
98 else if (absdiff >= 8 && absdiff <= 15)
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c87 int diff, adj, absdiff, delta; local
108 absdiff = abs(diff);
110 if (absdiff <= absdiff_thresh(bs, increase_denoising)) {
114 switch (absdiff) {
/external/ceres-solver/internal/ceres/
H A Drotation_test.cc679 double absdiff = fabs(x - y); local
681 return absdiff <= kTolerance;
683 double reldiff = absdiff / max(fabs(x), fabs(y));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Ddenoising.c36 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
95 int absdiff = 0; local
98 absdiff = abs(diff);
102 if (absdiff <= 3 + shift_inc1)
109 if (absdiff >= 4 + shift_inc1 && absdiff <= 7)
111 else if (absdiff >= 8 && absdiff <= 15)
272 int absdiff = 0; local
275 absdiff
[all...]

Completed in 577 milliseconds