HomeSort by relevance Sort by last modified time
    Searched full:absdiff (Results 1 - 25 of 39) sorted by null

1 2

  /external/libvpx/libvpx/vpx_dsp/x86/
avg_intrin_sse2.c 20 __m128i u0, s0, d0, diff, maxabsdiff, minabsdiff, negdiff, absdiff0, absdiff; local
33 absdiff = _mm_max_epi16(diff, negdiff);
34 maxabsdiff = _mm_max_epi16(absdiff0, absdiff);
35 minabsdiff = _mm_min_epi16(absdiff0, absdiff);
41 absdiff = _mm_max_epi16(diff, negdiff);
42 maxabsdiff = _mm_max_epi16(maxabsdiff, absdiff);
43 minabsdiff = _mm_min_epi16(minabsdiff, absdiff);
49 absdiff = _mm_max_epi16(diff, negdiff);
50 maxabsdiff = _mm_max_epi16(maxabsdiff, absdiff);
51 minabsdiff = _mm_min_epi16(minabsdiff, absdiff);
    [all...]
  /external/webrtc/webrtc/modules/video_processing/util/
denoiser_filter_c.cc 90 int absdiff = 0; local
93 absdiff = abs(diff);
97 if (absdiff <= 3 + shift_inc1) {
101 if (absdiff >= 4 + shift_inc1 && absdiff <= 7)
103 else if (absdiff >= 8 && absdiff <= 15)
  /external/libvpx/libvpx/vp8/encoder/
denoising.c 36 * filter_coefficient = (255 << 8) / (256 + ((absdiff * 330) >> 3));
88 int absdiff = 0; local
91 absdiff = abs(diff);
95 if (absdiff <= 3 + shift_inc1) {
99 if (absdiff >= 4 + shift_inc1 && absdiff <= 7) {
101 } else if (absdiff >= 8 && absdiff <= 15) {
260 int absdiff = 0; local
263 absdiff = abs(diff)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 87 static uint32_t AbsDiff(uint32_t seq1, uint32_t seq2) {
132 uint32_t diff1 = AbsDiff(seq1, mHighestSeqNumber);
133 uint32_t diff2 = AbsDiff(seq2, mHighestSeqNumber);
134 uint32_t diff3 = AbsDiff(seq3, mHighestSeqNumber);
  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 118 static typename MathLimits<T>::UnsignedType AbsDiff(const T x, const T y) {
155 return AbsDiff(x, y) <= Max(margin, relative_margin);
  /external/deqp/data/gles2/shaders/
functions.test 1912 float absDiff (vec4 a, vec4 b) { vec4 d = abs(a - b); return max(max(d.x, d.y), max(d.z, d.w)); }
1916 bool test (in float arr[4], vec4 ref) { return (absDiff(get(arr), ref) < 0.1); }
1917 bool isEqual (in float a[4], in float b[4]) { return (absDiff(get(a), get(b)) < 0.1); }
1954 float absDiff (vec4 a, vec4 b) { vec4 d = abs(a - b); return max(max(d.x, d.y), max(d.z, d.w)); }
1958 bool test (in float arr[4], vec4 ref) { return (absDiff(get(arr), ref) < 0.1); }
1959 bool isEqual (in float a[4], in float b[4]) { return (absDiff(get(a), get(b)) < 0.1); }
    [all...]
  /external/deqp/external/vulkancts/data/vulkan/glsl/es310/
functions.test     [all...]
  /external/deqp/data/gles3/shaders/
functions.test     [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_denoiser.c 76 int diff, adj, absdiff, delta; local
97 absdiff = abs(diff);
99 if (absdiff <= absdiff_thresh(bs, increase_denoising)) {
103 switch (absdiff) {
  /external/llvm/test/CodeGen/ARM/
neon_vabs.ll 93 ;; Check that absdiff patterns as emitted by log2 shuffles are
  /frameworks/av/media/libaudioprocessing/
AudioResamplerDyn.cpp 238 template<typename T> T absdiff(T a, T b) {return a > b ? a - b : b - a;} function in namespace:android
335 int pdiff = absdiff(newSampleRate, prevSampleRate);
336 int adiff = absdiff(newSampleRate, filterSampleRate);
  /prebuilts/go/darwin-x86/src/math/rand/
rand_test.go 39 absDiff := math.Abs(a - b)
40 if absDiff < closeEnough { // Necessary when one value is zero and one value is close to zero.
43 return absDiff/max(math.Abs(a), math.Abs(b)) < maxError
  /prebuilts/go/linux-x86/src/math/rand/
rand_test.go 39 absDiff := math.Abs(a - b)
40 if absDiff < closeEnough { // Necessary when one value is zero and one value is close to zero.
43 return absDiff/max(math.Abs(a), math.Abs(b)) < maxError
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 552 const double absdiff = diff >= 0.0 ? diff : -diff; local
555 /* absdiff/absprod <= 1/32 iff
556 32 * absdiff <= absprod -- 5 good bits is "close enough" */
557 if (32.0 * absdiff <= absprod)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 538 const double absdiff = diff >= 0.0 ? diff : -diff; local
541 /* absdiff/absprod <= 1/32 iff
542 32 * absdiff <= absprod -- 5 good bits is "close enough" */
543 if (32.0 * absdiff <= absprod)
    [all...]
  /external/aac/libAACenc/src/
aacenc_tns.cpp     [all...]
  /external/python/cpython2/Objects/
intobject.c 545 const double absdiff = diff >= 0.0 ? diff : -diff; local
548 /* absdiff/absprod <= 1/32 iff
549 32 * absdiff <= absprod -- 5 good bits is "close enough" */
550 if (32.0 * absdiff <= absprod)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiImageClearingTests.cpp 365 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold), channelMask), channelMask));
386 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold), channelMask), channelMask));
407 const bool result = !(anyNotEqual(logicalAnd(lessThanEqual(absDiff(resColor, refColor), threshold), channelMask), channelMask));
    [all...]
  /external/zopfli/src/zopfli/
deflate.c 369 static size_t AbsDiff(size_t x, size_t y) {
430 || AbsDiff(counts[i], limit) >= 4) {
  /external/vixl/src/aarch64/
logic-aarch64.cc 2217 LogicVRegister Simulator::absdiff(VectorFormat vform, function in class:vixl::aarch64::Simulator
    [all...]
  /external/deqp/framework/common/
tcuVectorUtil.hpp 361 static inline Vector<T, Size> absDiff (const Vector<T, Size>& a, const Vector<T, Size>& b)
tcuTexLookupVerifier.cpp 85 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result).asUint(), prec.colorThreshold), logicalNot(prec.colorMask)));
90 return boolAll(logicalOr(lessThanEqual(absDiff(ref, result), prec.colorThreshold), logicalNot(prec.colorMask)));
    [all...]
  /external/opencv/cxcore/src/
_cxipp.h 426 ////////////////////////////////////// AbsDiff ///////////////////////////////////////////
    [all...]
cxcmp.cpp     [all...]
  /toolchain/binutils/binutils-2.27/gas/config/
tc-mep.c 159 { "mno-absdiff", no_argument, NULL, OPTION_NOABSDIFF},
346 -mbitops -mno-bitops -mleadz -mno-leadz -mabsdiff -mno-absdiff\n\
    [all...]

Completed in 1678 milliseconds

1 2