Home
last modified time | relevance | path

Searched refs:left_y (Results 1 – 11 of 11) sorted by relevance

/external/libgav1/libgav1/src/dsp/x86/
Dintrapred_smooth_sse4.cc61 const __m128i left_y = _mm_shuffle_epi32(left, y_mask); in WriteSmoothHorizontalSum4() local
62 const __m128i weighted_left_y = _mm_mullo_epi16(left_y, weights); in WriteSmoothHorizontalSum4()
118 const __m128i left_y = _mm_shuffle_epi32(left, y_mask); in WriteSmoothPredSum4() local
119 const __m128i weighted_left_y = _mm_mullo_epi32(left_y, weights_x); in WriteSmoothPredSum4()
490 const __m128i left_y = _mm_cvtsi32_si128(left_ptr[y]); in SmoothWxH() local
495 _mm_shuffle_epi32(_mm_unpacklo_epi16(weights_y, left_y), 0); in SmoothWxH()
652 __m128i left_y = _mm_shuffle_epi8(left, y_select); in SmoothHorizontal8x4_SSE4_1() local
654 WriteSmoothDirectionalSum8(dst, left_y, weights, scaled_top_right, scale); in SmoothHorizontal8x4_SSE4_1()
657 left_y = _mm_shuffle_epi8(left, y_select); in SmoothHorizontal8x4_SSE4_1()
658 WriteSmoothDirectionalSum8(dst, left_y, weights, scaled_top_right, scale); in SmoothHorizontal8x4_SSE4_1()
[all …]
Dintrapred_directional_sse4.cc393 for (int x = 0, left_y = base_left_y; x < 4; x++, left_y += ystep) { in DirectionalZone3_4x4() local
394 const int left_base_y = left_y >> scale_bits; in DirectionalZone3_4x4()
395 const int shift_val = ((left_y << upsample_shift) & 0x3F) >> 1; in DirectionalZone3_4x4()
438 for (int x = 0, left_y = base_left_y; x < 8; x++, left_y += ystep) { in DirectionalZone3_8xH() local
439 const int left_base_y = left_y >> scale_bits; in DirectionalZone3_8xH()
440 const int shift_val = (LeftShift(left_y, upsample_shift) & 0x3F) >> 1; in DirectionalZone3_8xH()
473 int left_y = ystep; in DirectionalIntraPredictorZone3_SSE4_1() local
480 dst_x, stride, left_ptr + (y << upsample_shift), left_y, ystep); in DirectionalIntraPredictorZone3_SSE4_1()
484 left_y += ystep << 2; in DirectionalIntraPredictorZone3_SSE4_1()
488 int left_y = ystep; in DirectionalIntraPredictorZone3_SSE4_1() local
[all …]
/external/libgav1/libgav1/src/dsp/arm/
Dintrapred_directional_neon.cc424 const int16x8_t left_y, in DirectionalZone2FromLeftCol_WxH() argument
429 int16x8_t offset_y, shift_upsampled = left_y; in DirectionalZone2FromLeftCol_WxH()
431 offset_y = vshrq_n_s16(left_y, 5); in DirectionalZone2FromLeftCol_WxH()
434 offset_y = vshrq_n_s16(left_y, 6); in DirectionalZone2FromLeftCol_WxH()
567 int16x8_t left_y = vmulq_n_s16(zero_to_seven, -ystep); in DirectionalZone2_4xH() local
568 left_y = vaddq_s16(left_y, vdupq_n_s16(-ystep_remainder)); in DirectionalZone2_4xH()
607 left_y, upsample_left_shift); in DirectionalZone2_4xH()
616 const int16_t base_left_y = vgetq_lane_s16(left_y, 0); in DirectionalZone2_4xH()
690 int16x8_t left_y = vmulq_n_s16(zero_to_seven, -ystep); in DirectionalZone2_8() local
691 left_y = vaddq_s16(left_y, vdupq_n_s16(-ystep_remainder)); in DirectionalZone2_8()
[all …]
/external/libgav1/libgav1/src/dsp/
Dintrapred_directional.cc124 int left_y = (y << 6) - ystep; in DirectionalIntraPredictorZone2_C() local
133 const int left_base_y = left_y >> scale_bits_y; in DirectionalIntraPredictorZone2_C()
134 const int shift = ((left_y * (1 << upsample_left_shift)) & 0x3F) >> 1; in DirectionalIntraPredictorZone2_C()
140 left_y -= ystep; in DirectionalIntraPredictorZone2_C()
167 int left_y = ystep; in DirectionalIntraPredictorZone3_C() local
172 int left_base_y = left_y >> scale_bits; in DirectionalIntraPredictorZone3_C()
175 const int shift = ((left_y << upsample_shift) & 0x3F) >> 1; in DirectionalIntraPredictorZone3_C()
183 left_y += ystep; in DirectionalIntraPredictorZone3_C()
/external/libvpx/libvpx/vp9/common/
Dvp9_loopfilter.c659 uint64_t *const left_y = &lfm->left_y[tx_size_y]; in build_masks() local
694 *left_y |= left_prediction_mask[block_size] << shift_y; in build_masks()
711 *left_y |= (size_mask[block_size] & left_64x64_txform_mask[tx_size_y]) in build_masks()
735 uint64_t *const left_y = &lfm->left_y[tx_size_y]; in build_y_mask() local
753 *left_y |= left_prediction_mask[block_size] << shift_y; in build_y_mask()
760 *left_y |= (size_mask[block_size] & left_64x64_txform_mask[tx_size_y]) in build_y_mask()
772 lfm->left_y[TX_16X16] |= lfm->left_y[TX_32X32]; in vp9_adjust_mask()
780 lfm->left_y[TX_8X8] |= lfm->left_y[TX_4X4] & left_border; in vp9_adjust_mask()
781 lfm->left_y[TX_4X4] &= ~left_border; in vp9_adjust_mask()
799 lfm->left_y[i] &= mask_y; in vp9_adjust_mask()
[all …]
Dvp9_loopfilter.h61 uint64_t left_y[TX_SIZES]; member
/external/libaom/libaom/av1/common/
Dloopfiltermask.c831 case 0: lfm->left_y[min_tx_size].bits[index] |= mask_1; break; in av1_build_bitmask_vert_info()
970 mask_16x16 = lfm->left_y[TX_16X16].bits[index]; in av1_filter_block_plane_bitmask_vert()
971 mask_8x8 = lfm->left_y[TX_8X8].bits[index]; in av1_filter_block_plane_bitmask_vert()
972 mask_4x4 = lfm->left_y[TX_4X4].bits[index]; in av1_filter_block_plane_bitmask_vert()
1132 mask_16x16 = lfm->left_y[TX_16X16].bits[index]; in av1_filter_block_plane_ver()
1133 mask_8x8 = lfm->left_y[TX_8X8].bits[index]; in av1_filter_block_plane_ver()
1134 mask_4x4 = lfm->left_y[TX_4X4].bits[index]; in av1_filter_block_plane_ver()
Dav1_loopfilter.h53 FilterMask left_y[TX_SIZES]; member
/external/deqp/external/openglcts/modules/gl/
Dgl4cCopyImageTests.hpp136 … glw::GLuint left_y, glw::GLuint left_layer, glw::GLuint left_level, const targetDesc& right_desc,
Dgl4cCopyImageTests.cpp2892 …:compareImages(const targetDesc& left_desc, const GLubyte* left_data, GLuint left_x, GLuint left_y, in compareImages() argument
2927 const GLuint left_reg_line_offset = left_line_size * left_y; in compareImages()
2969 << y + left_y << ", " << left_layer << "] lvl:" << left_level in compareImages()
/external/libaom/libaom/aom_dsp/x86/
Dintrapred_ssse3.c903 const __m128i left_y = _mm_cvtsi32_si128((uint32_t)left[y]); in smooth_predictor_wxh() local
907 _mm_shuffle_epi32(_mm_unpacklo_epi16(weights_y, left_y), 0); in smooth_predictor_wxh()
1597 const __m128i left_y = _mm_cvtsi32_si128((uint32_t)left[y]); in smooth_h_predictor_wxh() local
1599 _mm_shuffle_epi32(_mm_unpacklo_epi16(top_right, left_y), 0); in smooth_h_predictor_wxh()