Home
last modified time | relevance | path

Searched refs:satd (Results 1 – 6 of 6) sorted by relevance

/external/libhevc/encoder/arm/
Dihevce_had_compute_neon.c193 int64_t satd; in hadamard_sad8x8_using4x4() local
245 satd = vget_lane_s64(vadd_s64(vget_low_s64(c), vget_high_s64(c)), 0); in hadamard_sad8x8_using4x4()
247 return ((satd + 4) >> 3); in hadamard_sad8x8_using4x4()
334 int64_t satd; in ihevce_HAD_8x8_8bit_plane_neon() local
366 satd = vget_lane_s64(vadd_s64(vget_low_s64(c), vget_high_s64(c)), 0); in ihevce_HAD_8x8_8bit_plane_neon()
368 return ((satd + 4) >> 3); in ihevce_HAD_8x8_8bit_plane_neon()
515 uint64_t satd; in ihevce_HAD_16x16_8bit_neon() local
607 satd = vget_lane_u64(vadd_u64(vget_low_u64(c), vget_high_u64(c)), 0); in ihevce_HAD_16x16_8bit_neon()
609 return ((satd + 4) >> 3); in ihevce_HAD_16x16_8bit_neon()
673 uint64_t satd; in ihevce_HAD_32x32_8bit_neon() local
[all …]
/external/libvpx/libvpx/vpx_dsp/
Davg.c322 int satd = 0; in vpx_highbd_satd_c() local
323 for (i = 0; i < length; ++i) satd += abs(coeff[i]); in vpx_highbd_satd_c()
326 return satd; in vpx_highbd_satd_c()
334 int satd = 0; in vpx_satd_c() local
335 for (i = 0; i < length; ++i) satd += abs(coeff[i]); in vpx_satd_c()
338 return satd; in vpx_satd_c()
/external/libaom/libaom/aom_dsp/
Davg.c177 int satd = 0; in aom_satd_c() local
178 for (i = 0; i < length; ++i) satd += abs(coeff[i]); in aom_satd_c()
181 return satd; in aom_satd_c()
/external/libhevc/encoder/
Dihevce_ipe_pass.c270 WORD32 i, j, satd; in ihevce_ipe_pass_satd() local
272 satd = 0; in ihevce_ipe_pass_satd()
279 satd += abs(*pi2_coeff++); in ihevce_ipe_pass_satd()
292 satd >>= transform_shift; in ihevce_ipe_pass_satd()
295 return (satd); in ihevce_ipe_pass_satd()
/external/libvpx/libvpx/vpx_dsp/mips/
Davg_msa.c258 int i, satd; in vpx_satd_msa() local
271 satd = HADD_UW_U32(tmp0_w); in vpx_satd_msa()
293 satd = HADD_UW_U32(tmp0_w); in vpx_satd_msa()
338 satd = HADD_UW_U32(tmp0_w); in vpx_satd_msa()
383 satd = HADD_UW_U32(tmp0_w); in vpx_satd_msa()
385 satd = 0; in vpx_satd_msa()
388 satd += abs(data[i]); in vpx_satd_msa()
392 return satd; in vpx_satd_msa()
/external/libvpx/libvpx/vpx_dsp/arm/
Davg_neon.c73 const int satd = vget_lane_s32(s1, 0); in vpx_satd_neon() local
74 return satd; in vpx_satd_neon()