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

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
denoising.c 33 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
84 int absdiff = 0; local
87 absdiff = abs(diff);
90 if (absdiff <= 3)
97 if (absdiff >= 4 && absdiff <= 7)
99 else if (absdiff >= 8 && absdiff <= 15)
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.c 86 int diff, adj, absdiff, delta; local
94 absdiff = abs(diff);
96 if (absdiff <= absdiff_thresh(bs, increase_denoising)) {
100 switch (absdiff) {
  /external/ceres-solver/internal/ceres/
rotation_test.cc 679 double absdiff = fabs(x - y); local
681 return absdiff <= kTolerance;
683 double reldiff = absdiff / max(fabs(x), fabs(y));
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 36 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
91 int absdiff = 0; local
94 absdiff = abs(diff);
98 if (absdiff <= 3 + shift_inc1)
105 if (absdiff >= 4 && absdiff <= 7)
107 else if (absdiff >= 8 && absdiff <= 15)
242 int absdiff = 0; local
245 absdiff = abs(diff)
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerDyn.cpp 210 template<typename T> T absdiff(T a, T b) {return a > b ? a - b : b - a;} function in namespace:android
270 int pdiff = absdiff(newSampleRate, prevSampleRate);
271 int adiff = absdiff(newSampleRate, filterSampleRate);
  /external/vixl/src/vixl/a64/
logic-a64.cc 2136 LogicVRegister Simulator::absdiff(VectorFormat vform, function in class:vixl::Simulator
    [all...]
  /cts/apps/CtsVerifier/libs/
opencv-android.jar 

Completed in 4032 milliseconds