Home
last modified time | relevance | path

Searched refs:left_col (Results 1 – 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_reconintra.c128 DECLARE_ALIGNED(16, uint16_t, left_col[32]); in build_intra_predictors_high()
162 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high()
166 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high()
168 left_col[i] = ref[(extend_bottom - 1) * ref_stride - 1]; in build_intra_predictors_high()
173 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors_high()
177 vpx_memset16(left_col, base + 1, bs); in build_intra_predictors_high()
235 left_col, xd->bd); in build_intra_predictors_high()
237 pred_high[mode][tx_size](dst, dst_stride, const_above_row, left_col, in build_intra_predictors_high()
250 DECLARE_ALIGNED(16, uint8_t, left_col[32]); in build_intra_predictors()
286 left_col[i] = ref[i * ref_stride - 1]; in build_intra_predictors()
[all …]
/external/libvpx/libvpx/test/
Dvp9_intrapred_test.cc52 void RunTest(uint16_t* left_col, uint16_t* above_data, in RunTest() argument
55 left_col_ = left_col; in RunTest()
123 DECLARE_ALIGNED(16, uint16_t, left_col[2*32]); in TEST_P()
127 RunTest(left_col, above_data, dst, ref_dst); in TEST_P()