Searched refs:src_expand_high (Results 1 – 1 of 1) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
D | vp9_variance_impl_intrin_avx2.c | 19 __m256i src, src_expand_low, src_expand_high, ref, ref_expand_low; in vp9_get16x16var_avx2() local 43 src_expand_high = _mm256_unpackhi_epi8(src, zero_reg); in vp9_get16x16var_avx2() 50 src_expand_high = _mm256_sub_epi16(src_expand_high, ref_expand_high); in vp9_get16x16var_avx2() 56 src_expand_low = _mm256_add_epi16(src_expand_low, src_expand_high); in vp9_get16x16var_avx2() 59 madd_high = _mm256_madd_epi16(src_expand_high, src_expand_high); in vp9_get16x16var_avx2() 130 __m256i src, src_expand_low, src_expand_high, ref, ref_expand_low; in vp9_get32x32var_avx2() local 145 src_expand_high = _mm256_unpackhi_epi8(src, zero_reg); in vp9_get32x32var_avx2() 152 src_expand_high = _mm256_sub_epi16(src_expand_high, ref_expand_high); in vp9_get32x32var_avx2() 158 src_expand_low = _mm256_add_epi16(src_expand_low, src_expand_high); in vp9_get32x32var_avx2() 161 madd_high = _mm256_madd_epi16(src_expand_high, src_expand_high); in vp9_get32x32var_avx2()
|