Home
last modified time | relevance | path

Searched refs:kSmoothWeights (Results 1 – 3 of 3) sorted by relevance

/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_smooth_neon.cc40 constexpr uint8_t kSmoothWeights[] = { variable
77 const uint8_t* const weights_y = kSmoothWeights + height - 4; in Smooth4Or8xN_NEON()
89 const uint8x8_t weights_x_v = vld1_u8(kSmoothWeights + width - 4); in Smooth4Or8xN_NEON()
158 const uint8_t* const weights_y = kSmoothWeights + height - 4; in Smooth16PlusxN_NEON()
178 weights_x_v[0] = vld1q_u8(kSmoothWeights + width - 4); in Smooth16PlusxN_NEON()
180 weights_x_v[1] = vld1q_u8(kSmoothWeights + width + 16 - 4); in Smooth16PlusxN_NEON()
182 weights_x_v[2] = vld1q_u8(kSmoothWeights + width + 32 - 4); in Smooth16PlusxN_NEON()
183 weights_x_v[3] = vld1q_u8(kSmoothWeights + width + 48 - 4); in Smooth16PlusxN_NEON()
238 const uint8_t* const weights_y = kSmoothWeights + height - 4; in SmoothVertical4Or8xN_NEON()
288 const uint8_t* const weights_y = kSmoothWeights + height - 4; in SmoothVertical16PlusxN_NEON()
[all …]
/external/libgav1/libgav1/src/dsp/x86/
Dintrapred_smooth_sse4.cc40 constexpr uint8_t kSmoothWeights[] = { variable
222 const __m128i weights = _mm_cvtepu8_epi32(Load4(kSmoothWeights)); in Smooth4x4_SSE4_1()
256 LoadSmoothWeights4(kSmoothWeights, 8, weights_y, weights_x); in Smooth4x8_SSE4_1()
269 LoadSmoothWeights4(kSmoothWeights, 16, weights_y, weights_x); in Smooth4x16_SSE4_1()
416 LoadSmoothWeights8(kSmoothWeights, 4, weights_x, weights_y); in Smooth8x4_SSE4_1()
431 LoadSmoothWeights8(kSmoothWeights, 8, weights_x, weights_y); in Smooth8x8_SSE4_1()
445 LoadSmoothWeights8(kSmoothWeights, 16, weights_x, weights_y); in Smooth8x16_SSE4_1()
461 LoadSmoothWeights8(kSmoothWeights, 32, weights_x, weights_y); in Smooth8x32_SSE4_1()
480 const uint8_t* const sm_weights_h = kSmoothWeights + height - 4; in SmoothWxH()
481 const uint8_t* const sm_weights_w = kSmoothWeights + width - 4; in SmoothWxH()
[all …]
/external/libgav1/libgav1/src/dsp/
Dintrapred_smooth.cc44 constexpr uint8_t kSmoothWeights[] = { variable
72 const uint8_t* const weights_x = kSmoothWeights + block_width - 4; in Smooth()
73 const uint8_t* const weights_y = kSmoothWeights + block_height - 4; in Smooth()
104 const uint8_t* const weights_y = kSmoothWeights + block_height - 4; in SmoothVertical()
131 const uint8_t* const weights_x = kSmoothWeights + block_width - 4; in SmoothHorizontal()