Searched refs:tr0_0 (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/vp9/common/x86/ |
D | vp9_idct_intrin_sse2.h | 20 const __m128i tr0_0 = _mm_unpacklo_epi16(in[0], in[1]); in array_transpose_8x8() local 29 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); in array_transpose_8x8() 31 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); in array_transpose_8x8() 50 const __m128i tr0_0 = _mm_unpacklo_epi16(in0, in1); \ 53 in0 = _mm_unpacklo_epi32(tr0_0, tr0_1); /* i1 i0 */ \ 54 in1 = _mm_unpackhi_epi32(tr0_0, tr0_1); /* i3 i2 */ \ 58 const __m128i tr0_0 = _mm_unpacklo_epi16(in[0], in[1]); in array_transpose_4X8() local 63 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); in array_transpose_4X8() 64 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); in array_transpose_4X8()
|
D | vp9_idct_intrin_sse2.c | 171 const __m128i tr0_0 = _mm_unpacklo_epi16(res[0], res[1]); in transpose_4x4() local 174 res[0] = _mm_unpacklo_epi16(tr0_0, tr0_1); in transpose_4x4() 175 res[1] = _mm_unpackhi_epi16(tr0_0, tr0_1); in transpose_4x4() 331 const __m128i tr0_0 = _mm_unpacklo_epi16(in0, in1); \ 340 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); \ 342 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); \ 362 const __m128i tr0_0 = _mm_unpackhi_epi16(tmp0, tmp1); \ 367 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); \ 368 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); \ 380 const __m128i tr0_0 = _mm_unpacklo_epi16(in0, in1); \ [all …]
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_dct_sse2.c | 281 const __m128i tr0_0 = _mm_unpacklo_epi16(res[0], res[1]); in transpose_4x4() local 286 res[0] = _mm_unpacklo_epi32(tr0_0, tr0_1); in transpose_4x4() 287 res[2] = _mm_unpackhi_epi32(tr0_0, tr0_1); in transpose_4x4() 614 const __m128i tr0_0 = _mm_unpacklo_epi16(res0, res1); in vp9_fdct8x8_sse2() local 630 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); in vp9_fdct8x8_sse2() 632 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); in vp9_fdct8x8_sse2() 785 const __m128i tr0_0 = _mm_unpacklo_epi16(in[0], in[1]); in array_transpose_8x8() local 801 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); in array_transpose_8x8() 803 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); in array_transpose_8x8() 1801 const __m128i tr0_0 = _mm_unpacklo_epi16(res00, res01); in vp9_fdct16x16_sse2() local [all …]
|
D | vp9_dct32x32_sse2.c | 2587 const __m128i tr0_0 = _mm_unpacklo_epi16(this_out[0], this_out[1]); in FDCT32x32_2D() local 2603 const __m128i tr1_0 = _mm_unpacklo_epi32(tr0_0, tr0_1); in FDCT32x32_2D() 2605 const __m128i tr1_2 = _mm_unpackhi_epi32(tr0_0, tr0_1); in FDCT32x32_2D()
|
D | vp9_dct32x32_avx2.c | 2595 const __m256i tr0_0 = _mm256_unpacklo_epi16(this_out[0], this_out[1]); in FDCT32x32_2D_AVX2() local 2612 const __m256i tr1_0 = _mm256_unpacklo_epi32(tr0_0, tr0_1); in FDCT32x32_2D_AVX2() 2614 const __m256i tr1_2 = _mm256_unpackhi_epi32(tr0_0, tr0_1); in FDCT32x32_2D_AVX2()
|