/external/libvpx/libvpx/vp9/common/ |
D | vp9_reconintra.c | 120 DECLARE_ALIGNED(16, uint16_t, left_col[32]); in build_intra_predictors_high() 158 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 162 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 164 left_col[i] = ref[(extend_bottom - 1) * ref_stride - 1]; in build_intra_predictors_high() 168 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high() 171 vpx_memset16(left_col, base + 1, bs); in build_intra_predictors_high() 255 dst, dst_stride, const_above_row, left_col, xd->bd); in build_intra_predictors_high() 257 pred_high[mode][tx_size](dst, dst_stride, const_above_row, left_col, in build_intra_predictors_high() 270 DECLARE_ALIGNED(16, uint8_t, left_col[32]); in build_intra_predictors() 305 for (i = 0; i < bs; ++i) left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors() [all …]
|
/external/libaom/libaom/aom_dsp/x86/ |
D | intrapred_sse2.c | 987 __m128i left_col = _mm_loadl_epi64((__m128i const *)left); in aom_h_predictor_4x8_sse2() local 988 left_col = _mm_unpacklo_epi8(left_col, left_col); in aom_h_predictor_4x8_sse2() 989 __m128i row0 = _mm_shufflelo_epi16(left_col, 0); in aom_h_predictor_4x8_sse2() 990 __m128i row1 = _mm_shufflelo_epi16(left_col, 0x55); in aom_h_predictor_4x8_sse2() 991 __m128i row2 = _mm_shufflelo_epi16(left_col, 0xaa); in aom_h_predictor_4x8_sse2() 992 __m128i row3 = _mm_shufflelo_epi16(left_col, 0xff); in aom_h_predictor_4x8_sse2() 1001 left_col = _mm_unpackhi_epi64(left_col, left_col); in aom_h_predictor_4x8_sse2() 1002 row0 = _mm_shufflelo_epi16(left_col, 0); in aom_h_predictor_4x8_sse2() 1003 row1 = _mm_shufflelo_epi16(left_col, 0x55); in aom_h_predictor_4x8_sse2() 1004 row2 = _mm_shufflelo_epi16(left_col, 0xaa); in aom_h_predictor_4x8_sse2() [all …]
|
D | intrapred_avx2.c | 399 const __m256i left_col = _mm256_loadu_si256((__m256i const *)left); in aom_h_predictor_32x32_avx2() local 401 __m256i u = _mm256_unpacklo_epi8(left_col, left_col); in aom_h_predictor_32x32_avx2() 411 u = _mm256_unpackhi_epi8(left_col, left_col); in aom_h_predictor_32x32_avx2()
|
/external/libaom/libaom/test/ |
D | intrapred_test.cc | 70 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument 75 left_col_ = left_col; in RunTest() 162 DECLARE_ALIGNED(16, uint16_t, left_col[2 * 64]); in TEST_P() 166 av1_zero(left_col); in TEST_P() 168 RunTest(left_col, above_data, dst, ref_dst); in TEST_P() 176 DECLARE_ALIGNED(16, uint8_t, left_col[2 * 32]); in TEST_P() 180 av1_zero(left_col); in TEST_P() 182 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
|
/external/libaom/libaom/av1/common/ |
D | reconintra.c | 1148 uint16_t *const left_col = left_data + 16; in build_intra_predictors_high() local 1206 for (; i < n_left_px; i++) left_col[i] = left_ref[i * ref_stride]; in build_intra_predictors_high() 1210 left_col[i] = left_ref[i * ref_stride]; in build_intra_predictors_high() 1213 aom_memset16(&left_col[i], left_col[i - 1], num_left_pixels_needed - i); in build_intra_predictors_high() 1216 aom_memset16(left_col, above_ref[0], num_left_pixels_needed); in build_intra_predictors_high() 1218 aom_memset16(left_col, base + 1, num_left_pixels_needed); in build_intra_predictors_high() 1260 left_col[-1] = above_row[-1]; in build_intra_predictors_high() 1264 highbd_filter_intra_predictor(dst, dst_stride, tx_size, above_row, left_col, in build_intra_predictors_high() 1279 filter_intra_edge_corner_high(above_row, left_col); in build_intra_predictors_high() 1291 av1_filter_intra_edge_high(left_col - ab_le, n_px, strength); in build_intra_predictors_high() [all …]
|
/external/perfetto/src/trace_processor/db/ |
D | table.cc | 164 const Column& left_col = columns_[left.col_idx]; in LookupJoin() local 173 SqlValue val = left_col.Get(i); in LookupJoin()
|
/external/libvpx/libvpx/test/ |
D | vp9_intrapred_test.cc | 49 void RunTest(Pixel *left_col, Pixel *above_data, Pixel *dst, Pixel *ref_dst) { in RunTest() argument 53 left_col_ = left_col; in RunTest() 126 DECLARE_ALIGNED(16, uint8_t, left_col[2 * 32]); in TEST_P() 130 RunTest(left_col, above_data, dst, ref_dst); in TEST_P() 472 DECLARE_ALIGNED(16, uint16_t, left_col[2 * 32]); in TEST_P() 476 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()
|
/external/libaom/libaom/av1/encoder/ |
D | nonrd_pickmode.c | 991 int left_row, left_col; local 1006 left_col = xd->left_mbmi->mv[0].as_mv.col; 1010 al_mv_average_col = (above_col + left_col + 1) >> 1; 1016 al_mv_average_col = left_col;
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1299 int left_row, left_col; in vp9_NEWMV_diff_bias() local 1314 left_col = xd->left_mi->mv[0].as_mv.col; in vp9_NEWMV_diff_bias() 1318 al_mv_average_col = (above_col + left_col + 1) >> 1; in vp9_NEWMV_diff_bias() 1324 al_mv_average_col = left_col; in vp9_NEWMV_diff_bias()
|