Searched refs:sum_block (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Ddenoising.c227 int sum_block = 0; local
247 sum_block += sig[c];
251 if (abs(sum_block - (128 * 8 * 8)) < SUM_DIFF_FROM_AVG_THRESH_UV) {
/external/libvpx/libvpx/vp8/encoder/arm/neon/
H A Ddenoising_neon.c276 const int sum_block = vget_lane_s32(vreinterpret_s32_u64(_76543210), 0); local
277 if (abs(sum_block - (128 * 8 * 8)) < SUM_DIFF_FROM_AVG_THRESH_UV) {
/external/libvpx/libvpx/vp8/encoder/x86/
H A Ddenoising_sse2.c227 const int sum_block = _mm_cvtsi128_si32(hgfedcba); local
228 if (abs(sum_block - (128 * 8 * 8)) < SUM_DIFF_FROM_AVG_THRESH_UV) {
/external/libvpx/libvpx/vp8/encoder/mips/msa/
H A Ddenoising_msa.c317 int32_t sum_block = 0; local
364 sum_block = __msa_copy_s_w((v4i32)temp0_d, 0);
367 if (abs(sum_block - (128 * 8 * 8)) < SUM_DIFF_FROM_AVG_THRESH_UV) {

Completed in 2070 milliseconds