Searched refs:t_coeff (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/aom_dsp/x86/ |
D | avg_intrin_avx2.c | 139 int16_t *t_coeff = temp_coeff; in hadamard_16x16_avx2() local 144 hadamard_8x8x2_avx2(src_ptr, src_stride, t_coeff + (idx * 64 * 2)); in hadamard_16x16_avx2() 148 const __m256i coeff0 = _mm256_loadu_si256((const __m256i *)t_coeff); in hadamard_16x16_avx2() 149 const __m256i coeff1 = _mm256_loadu_si256((const __m256i *)(t_coeff + 64)); in hadamard_16x16_avx2() 150 const __m256i coeff2 = _mm256_loadu_si256((const __m256i *)(t_coeff + 128)); in hadamard_16x16_avx2() 151 const __m256i coeff3 = _mm256_loadu_si256((const __m256i *)(t_coeff + 192)); in hadamard_16x16_avx2() 175 t_coeff += 16; in hadamard_16x16_avx2() 186 int16_t *t_coeff = coeff; in aom_hadamard_lp_16x16_avx2() local 189 hadamard_8x8x2_avx2(src_ptr, src_stride, t_coeff + (idx * 64 * 2)); in aom_hadamard_lp_16x16_avx2() 193 const __m256i coeff0 = _mm256_loadu_si256((const __m256i *)t_coeff); in aom_hadamard_lp_16x16_avx2() [all …]
|
D | avg_intrin_sse2.c | 315 int16_t *t_coeff = temp_coeff; in hadamard_16x16_sse2() local 321 hadamard_8x8_sse2(src_ptr, src_stride, (tran_low_t *)(t_coeff + idx * 64), in hadamard_16x16_sse2() 326 __m128i coeff0 = _mm_load_si128((const __m128i *)t_coeff); in hadamard_16x16_sse2() 327 __m128i coeff1 = _mm_load_si128((const __m128i *)(t_coeff + 64)); in hadamard_16x16_sse2() 328 __m128i coeff2 = _mm_load_si128((const __m128i *)(t_coeff + 128)); in hadamard_16x16_sse2() 329 __m128i coeff3 = _mm_load_si128((const __m128i *)(t_coeff + 192)); in hadamard_16x16_sse2() 360 t_coeff += 8; in hadamard_16x16_sse2() 376 int16_t *t_coeff = temp_coeff; in aom_hadamard_32x32_sse2() local 382 (tran_low_t *)(t_coeff + idx * 256), 0); in aom_hadamard_32x32_sse2() 386 __m128i coeff0 = _mm_load_si128((const __m128i *)t_coeff); in aom_hadamard_32x32_sse2() [all …]
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | avg_intrin_avx2.c | 141 tran_low_t *t_coeff = coeff; in vpx_highbd_hadamard_16x16_avx2() local 145 vpx_highbd_hadamard_8x8_avx2(src_ptr, src_stride, t_coeff + idx * 64); in vpx_highbd_hadamard_16x16_avx2() 149 __m256i coeff0 = _mm256_loadu_si256((const __m256i *)t_coeff); in vpx_highbd_hadamard_16x16_avx2() 150 __m256i coeff1 = _mm256_loadu_si256((const __m256i *)(t_coeff + 64)); in vpx_highbd_hadamard_16x16_avx2() 151 __m256i coeff2 = _mm256_loadu_si256((const __m256i *)(t_coeff + 128)); in vpx_highbd_hadamard_16x16_avx2() 152 __m256i coeff3 = _mm256_loadu_si256((const __m256i *)(t_coeff + 192)); in vpx_highbd_hadamard_16x16_avx2() 175 t_coeff += 8; in vpx_highbd_hadamard_16x16_avx2() 182 tran_low_t *t_coeff = coeff; in vpx_highbd_hadamard_32x32_avx2() local 186 vpx_highbd_hadamard_16x16_avx2(src_ptr, src_stride, t_coeff + idx * 256); in vpx_highbd_hadamard_32x32_avx2() 190 __m256i coeff0 = _mm256_loadu_si256((const __m256i *)t_coeff); in vpx_highbd_hadamard_32x32_avx2() [all …]
|
D | avg_intrin_sse2.c | 333 int16_t *t_coeff = temp_coeff; in hadamard_16x16_sse2() local 335 int16_t *t_coeff = coeff; in hadamard_16x16_sse2() 342 hadamard_8x8_sse2(src_ptr, src_stride, (tran_low_t *)(t_coeff + idx * 64), in hadamard_16x16_sse2() 347 __m128i coeff0 = _mm_load_si128((const __m128i *)t_coeff); in hadamard_16x16_sse2() 348 __m128i coeff1 = _mm_load_si128((const __m128i *)(t_coeff + 64)); in hadamard_16x16_sse2() 349 __m128i coeff2 = _mm_load_si128((const __m128i *)(t_coeff + 128)); in hadamard_16x16_sse2() 350 __m128i coeff3 = _mm_load_si128((const __m128i *)(t_coeff + 192)); in hadamard_16x16_sse2() 381 t_coeff += 8; in hadamard_16x16_sse2() 398 int16_t *t_coeff = temp_coeff; in vpx_hadamard_32x32_sse2() local 400 int16_t *t_coeff = coeff; in vpx_hadamard_32x32_sse2() [all …]
|