Searched refs:paeth_16x1_pred (Results 1 – 2 of 2) sorted by relevance
/external/libaom/libaom/aom_dsp/x86/ |
D | intrapred_ssse3.c | 192 static INLINE __m128i paeth_16x1_pred(const __m128i *left, const __m128i *top0, in paeth_16x1_pred() function 213 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x4_ssse3() 235 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x8_ssse3() 258 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x16_ssse3() 282 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x32_ssse3() 293 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x32_ssse3() 316 const __m128i row = paeth_16x1_pred(&l16, &top0, &top1, &tl16); in aom_paeth_predictor_16x64_ssse3() 342 const __m128i r32l = paeth_16x1_pred(&l16, &al, &ah, &tl16); in aom_paeth_predictor_32x8_ssse3() 343 const __m128i r32h = paeth_16x1_pred(&l16, &bl, &bh, &tl16); in aom_paeth_predictor_32x8_ssse3() 372 const __m128i r32l = paeth_16x1_pred(&l16, &al, &ah, &tl16); in aom_paeth_predictor_32x16_ssse3() [all …]
|
D | intrapred_avx2.c | 689 static INLINE __m128i paeth_16x1_pred(const __m256i *left, const __m256i *top, in paeth_16x1_pred() function 717 const __m128i row = paeth_16x1_pred(&l16, &top, &tl16); in aom_paeth_predictor_16x8_avx2() 741 const __m128i row = paeth_16x1_pred(&l16, &top, &tl16); in aom_paeth_predictor_16x16_avx2() 760 const __m128i row = paeth_16x1_pred(&l16, &top, &tl16); in aom_paeth_predictor_16x32_avx2() 771 const __m128i row = paeth_16x1_pred(&l16, &top, &tl16); in aom_paeth_predictor_16x32_avx2() 790 const __m128i row = paeth_16x1_pred(&l16, &top, &tl16); in aom_paeth_predictor_16x64_avx2() 849 const __m128i r0 = paeth_16x1_pred(&l16, &t0, &tl); in aom_paeth_predictor_32x32_avx2() 850 const __m128i r1 = paeth_16x1_pred(&l16, &t1, &tl); in aom_paeth_predictor_32x32_avx2() 864 const __m128i r0 = paeth_16x1_pred(&l16, &t0, &tl); in aom_paeth_predictor_32x32_avx2() 865 const __m128i r1 = paeth_16x1_pred(&l16, &t1, &tl); in aom_paeth_predictor_32x32_avx2() [all …]
|