Searched refs:this_out (Results 1 – 2 of 2) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/x86/ |
D | vp9_dct32x32_avx2.c | 2586 __m256i *this_out = &out[8 * transpose_block]; in FDCT32x32_2D_AVX2() local 2595 const __m256i tr0_0 = _mm256_unpacklo_epi16(this_out[0], this_out[1]); in FDCT32x32_2D_AVX2() 2596 const __m256i tr0_1 = _mm256_unpacklo_epi16(this_out[2], this_out[3]); in FDCT32x32_2D_AVX2() 2597 const __m256i tr0_2 = _mm256_unpackhi_epi16(this_out[0], this_out[1]); in FDCT32x32_2D_AVX2() 2598 const __m256i tr0_3 = _mm256_unpackhi_epi16(this_out[2], this_out[3]); in FDCT32x32_2D_AVX2() 2599 const __m256i tr0_4 = _mm256_unpacklo_epi16(this_out[4], this_out[5]); in FDCT32x32_2D_AVX2() 2600 const __m256i tr0_5 = _mm256_unpacklo_epi16(this_out[6], this_out[7]); in FDCT32x32_2D_AVX2() 2601 const __m256i tr0_6 = _mm256_unpackhi_epi16(this_out[4], this_out[5]); in FDCT32x32_2D_AVX2() 2602 const __m256i tr0_7 = _mm256_unpackhi_epi16(this_out[6], this_out[7]); in FDCT32x32_2D_AVX2()
|
D | vp9_dct32x32_sse2.c | 2575 __m128i *this_out = &out[8 * transpose_block]; in FDCT32x32_2D() local 2584 const __m128i tr0_0 = _mm_unpacklo_epi16(this_out[0], this_out[1]); in FDCT32x32_2D() 2585 const __m128i tr0_1 = _mm_unpacklo_epi16(this_out[2], this_out[3]); in FDCT32x32_2D() 2586 const __m128i tr0_2 = _mm_unpackhi_epi16(this_out[0], this_out[1]); in FDCT32x32_2D() 2587 const __m128i tr0_3 = _mm_unpackhi_epi16(this_out[2], this_out[3]); in FDCT32x32_2D() 2588 const __m128i tr0_4 = _mm_unpacklo_epi16(this_out[4], this_out[5]); in FDCT32x32_2D() 2589 const __m128i tr0_5 = _mm_unpacklo_epi16(this_out[6], this_out[7]); in FDCT32x32_2D() 2590 const __m128i tr0_6 = _mm_unpackhi_epi16(this_out[4], this_out[5]); in FDCT32x32_2D() 2591 const __m128i tr0_7 = _mm_unpackhi_epi16(this_out[6], this_out[7]); in FDCT32x32_2D()
|