/external/libaom/libaom/av1/encoder/x86/ |
D | av1_fwd_txfm_avx2.h | 24 const __m256i ww1 = _mm256_set1_epi32(w1); in btf_32_avx2_type0() local 26 const __m256i in1_w1 = _mm256_mullo_epi32(_in1, ww1); in btf_32_avx2_type0() 30 const __m256i in0_w1 = _mm256_mullo_epi32(_in0, ww1); in btf_32_avx2_type0() 43 const __m256i ww1 = _mm256_set1_epi32(w1); in btf_32_avx2_type1() local 45 const __m256i in1_w1 = _mm256_mullo_epi32(_in1, ww1); in btf_32_avx2_type1() 49 const __m256i in0_w1 = _mm256_mullo_epi32(_in0, ww1); in btf_32_avx2_type1() 58 static INLINE void btf_32_avx2_type0_new(const __m256i ww0, const __m256i ww1, in btf_32_avx2_type0_new() argument 65 const __m256i in1_w1 = _mm256_mullo_epi32(_in1, ww1); in btf_32_avx2_type0_new() 69 const __m256i in0_w1 = _mm256_mullo_epi32(_in0, ww1); in btf_32_avx2_type0_new() 78 static INLINE void btf_32_avx2_type1_new(const __m256i ww0, const __m256i ww1, in btf_32_avx2_type1_new() argument [all …]
|
D | av1_txfm1d_sse4.h | 99 const __m128i ww1 = _mm_set1_epi32(w1); \ 101 const __m128i in1_w1 = _mm_mullo_epi32(in1, ww1); \ 104 const __m128i in0_w1 = _mm_mullo_epi32(in0, ww1); \ 119 #define btf_32_type0_sse4_1_new(ww0, ww1, in0, in1, out0, out1, r, bit) \ argument 122 const __m128i in1_w1 = _mm_mullo_epi32(in1, ww1); \ 126 const __m128i in0_w1 = _mm_mullo_epi32(in0, ww1); \ 135 #define btf_32_type1_sse4_1_new(ww0, ww1, in0, in1, out0, out1, r, bit) \ argument 137 btf_32_type0_sse4_1_new(ww1, ww0, in1, in0, out0, out1, r, bit); \
|
D | highbd_fwd_txfm_avx2.c | 228 const __m256i ww1 = _mm256_set1_epi32(w1); \ 230 const __m256i in1_w1 = _mm256_mullo_epi32(in1, ww1); \ 233 const __m256i in0_w1 = _mm256_mullo_epi32(in0, ww1); \ 239 #define btf_32_type0_avx2_new(ww0, ww1, in0, in1, out0, out1, r, bit) \ argument 242 const __m256i in1_w1 = _mm256_mullo_epi32(in1, ww1); \ 246 const __m256i in0_w1 = _mm256_mullo_epi32(in0, ww1); \
|
/external/libaom/libaom/aom_dsp/x86/ |
D | lpf_common_sse2.h | 64 __m128i w0, w1, ww0, ww1; in highbd_transpose4x8_8x4_low_sse2() local 70 ww1 = _mm_unpackhi_epi32(w0, w1); // 02 12 22 32 03 13 23 33 in highbd_transpose4x8_8x4_low_sse2() 74 *d2 = _mm_unpacklo_epi64(ww1, zero); // 02 12 22 32 xx xx xx xx in highbd_transpose4x8_8x4_low_sse2() 75 *d3 = _mm_unpackhi_epi64(ww1, zero); // 03 13 23 33 xx xx xx xx in highbd_transpose4x8_8x4_low_sse2() 129 __m128i w0, w1, w2, w3, ww0, ww1; in highbd_transpose8x8_low_sse2() local 145 ww1 = _mm_unpacklo_epi32(w2, w3); // 40 50 60 70 41 51 61 71 in highbd_transpose8x8_low_sse2() 147 *d0 = _mm_unpacklo_epi64(ww0, ww1); // 00 10 20 30 40 50 60 70 in highbd_transpose8x8_low_sse2() 148 *d1 = _mm_unpackhi_epi64(ww0, ww1); // 01 11 21 31 41 51 61 71 in highbd_transpose8x8_low_sse2() 151 ww1 = _mm_unpackhi_epi32(w2, w3); // 42 52 62 72 43 53 63 73 in highbd_transpose8x8_low_sse2() 153 *d2 = _mm_unpacklo_epi64(ww0, ww1); // 02 12 22 32 42 52 62 72 in highbd_transpose8x8_low_sse2() [all …]
|
D | intrapred_avx2.c | 112 __m256i w0, w1, w2, w3, ww0, ww1; in highbd_transpose4x16_avx2() local 120 ww1 = _mm256_unpacklo_epi32(w2, w3); // 40 50 60 70 41 51 61 71 in highbd_transpose4x16_avx2() 122 d[0] = _mm256_unpacklo_epi64(ww0, ww1); // 00 10 20 30 40 50 60 70 in highbd_transpose4x16_avx2() 123 d[1] = _mm256_unpackhi_epi64(ww0, ww1); // 01 11 21 31 41 51 61 71 in highbd_transpose4x16_avx2() 126 ww1 = _mm256_unpackhi_epi32(w2, w3); // 42 52 62 72 43 53 63 73 in highbd_transpose4x16_avx2() 128 d[2] = _mm256_unpacklo_epi64(ww0, ww1); // 02 12 22 32 42 52 62 72 in highbd_transpose4x16_avx2() 129 d[3] = _mm256_unpackhi_epi64(ww0, ww1); // 03 13 23 33 43 53 63 73 in highbd_transpose4x16_avx2() 133 __m256i w0, w1, w2, w3, ww0, ww1; in highbd_transpose8x16_16x8_avx2() local 141 ww1 = _mm256_unpacklo_epi32(w2, w3); // 40 50 60 70 41 51 61 71 in highbd_transpose8x16_16x8_avx2() 143 d[0] = _mm256_unpacklo_epi64(ww0, ww1); // 00 10 20 30 40 50 60 70 in highbd_transpose8x16_16x8_avx2() [all …]
|
D | loopfilter_sse2.c | 34 __m128i w0, w1, ww0, ww1, w2, w3, ww2, ww3; in transpose_pq_14_sse2() local 46 ww1 = _mm_unpackhi_epi16( in transpose_pq_14_sse2() 69 ww1, in transpose_pq_14_sse2() 73 _mm_slli_si128(ww1, 4), in transpose_pq_14_sse2() 76 ww1, in transpose_pq_14_sse2() 80 _mm_srli_si128(ww1, 12), in transpose_pq_14_sse2()
|
/external/libyuv/files/util/ |
D | ssim.cc | 253 const __m128i ww1 = _mm_mullo_epi16(w1, (WEIGHT).values_.m_); \ in GetSSIMFullKernel() 255 y = _mm_add_epi32(y, _mm_unpacklo_epi16(ww1, zero)); \ in GetSSIMFullKernel() 257 y = _mm_add_epi32(y, _mm_unpackhi_epi16(ww1, zero)); \ in GetSSIMFullKernel() 260 yy = _mm_add_epi32(yy, _mm_madd_epi16(ww1, w1)); \ in GetSSIMFullKernel()
|
/external/ImageMagick/PerlMagick/t/reference/write/composite/ |
D | CopyBlue.miff | 41 …w��ww��ww��ww��ww}�wwR�wwH�wwQ�wws�ww|�wwZ�ww-�ww#�ww*�ww0�ww,�ww/�ww/�ww*�ww1�ww4�ww3�wwL�wwB�ww$…
|
/external/webrtc/talk/media/testdata/ |
D | h264-svc-99-640x360.rtpdump | 4430 Jq�=�(YB@;��֬)�O3P�YL�_��� �����\<K���ww1����|��:���c������
|