HomeSort by relevance Sort by last modified time
    Searched refs:absdiff (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp8/encoder/
denoising.c 33 * 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/ceres-solver/internal/ceres/
rotation_test.cc 644 double absdiff = fabs(x - y); local
646 return absdiff <= kTolerance;
648 double reldiff = absdiff / max(fabs(x), fabs(y));

Completed in 89 milliseconds