Searched refs:paeth_8x1_pred (Results 1 – 1 of 1) sorted by relevance
/external/libaom/libaom/aom_dsp/x86/ |
D | intrapred_ssse3.c | 22 static INLINE __m128i paeth_8x1_pred(const __m128i *left, const __m128i *top, in paeth_8x1_pred() function 57 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_4x4_ssse3() 78 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_4x8_ssse3() 98 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_4x16_ssse3() 119 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_8x4_ssse3() 140 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_8x8_ssse3() 161 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_8x16_ssse3() 182 const __m128i row = paeth_8x1_pred(&l16, &t16, &tl16); in aom_paeth_predictor_8x32_ssse3() 195 const __m128i p0 = paeth_8x1_pred(left, top0, topleft); in paeth_16x1_pred() 196 const __m128i p1 = paeth_8x1_pred(left, top1, topleft); in paeth_16x1_pred()
|