Searched refs:top_left_x2 (Results 1 – 3 of 3) sorted by relevance
/external/libgav1/libgav1/src/dsp/x86/ |
D | intrapred_sse4.cc | 729 const __m128i top_left_x2 = _mm_add_epi32(top_lefts, top_lefts); in Paeth4x4_SSE4_1() local 730 const __m128i top_left_diff = _mm_sub_epi32(top, top_left_x2); in Paeth4x4_SSE4_1() 762 const __m128i top_left_x2 = _mm_add_epi32(top_lefts, top_lefts); in Paeth4x8_SSE4_1() local 763 const __m128i top_left_diff = _mm_sub_epi32(top, top_left_x2); in Paeth4x8_SSE4_1() 812 const __m128i top_left_x2 = _mm_add_epi32(top_lefts, top_lefts); in Paeth4x16_SSE4_1() local 813 const __m128i top_left_diff = _mm_sub_epi32(top, top_left_x2); in Paeth4x16_SSE4_1() 878 const __m128i top_left_x2 = _mm_add_epi16(top_lefts, top_lefts); in Paeth8x4_SSE4_1() local 879 const __m128i top_left_diff = _mm_sub_epi16(top, top_left_x2); in Paeth8x4_SSE4_1() 907 const __m128i top_left_x2 = _mm_add_epi16(top_lefts, top_lefts); in Paeth8x8_SSE4_1() local 908 const __m128i top_left_diff = _mm_sub_epi16(top, top_left_x2); in Paeth8x8_SSE4_1() [all …]
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | intrapred_neon.cc | 329 const uint16x8_t top_left_x2 = vdupq_n_u16(top_row_u8[-1] + top_row_u8[-1]); in Paeth4Or8xN_NEON() local 343 vabdq_u16(vaddl_u8(top, left), top_left_x2); in Paeth4Or8xN_NEON() 412 vaddl_u8(vget_low_u8(top[num]), vget_low_u8(left)), top_left_x2); \ 414 vaddl_u8(vget_high_u8(top[num]), vget_low_u8(left)), top_left_x2) 436 const uint16x8_t top_left_x2 = vdupq_n_u16(top_row_u8[-1] + top_row_u8[-1]); in Paeth16PlusxN_NEON() local
|
/external/libgav1/libgav1/src/dsp/ |
D | intrapred.cc | 192 const int top_left_x2 = top_left + top_left; in Paeth() local 207 const int top_left_dist = std::abs(top[x] + left_pixel - top_left_x2); in Paeth()
|