/external/libhevc/common/ |
D | ihevc_sao.c | 85 WORD32 row, col; in ihevc_sao_band_offset_luma() local 93 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma() 95 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col]; in ihevc_sao_band_offset_luma() 110 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_luma() 114 band_idx = band_table[pu1_src[col] >> band_shift]; in ihevc_sao_band_offset_luma() 115 … pu1_src[col] = CLIP3(pu1_src[col] + pi1_sao_offset[band_idx], 0, (1 << (band_shift + 5)) - 1); in ihevc_sao_band_offset_luma() 140 WORD32 row, col; in ihevc_sao_band_offset_chroma() local 150 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_chroma() 152 pu1_src_top[col] = pu1_src[(ht - 1) * src_strd + col]; in ihevc_sao_band_offset_chroma() 170 for(col = 0; col < wd; col++) in ihevc_sao_band_offset_chroma() [all …]
|
D | ihevc_inter_pred_filters.c | 116 WORD32 row, col; in ihevc_inter_pred_luma_copy() local 120 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_copy() 122 pu1_dst[col] = pu1_src[col]; in ihevc_inter_pred_luma_copy() 178 WORD32 row, col, i; in ihevc_inter_pred_luma_horz() local 183 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_horz() 187 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3)]; in ihevc_inter_pred_luma_horz() 192 pu1_dst[col] = (UWORD8)i2_tmp; in ihevc_inter_pred_luma_horz() 251 WORD32 row, col, i; in ihevc_inter_pred_luma_vert() local 256 for(col = 0; col < wd; col++) in ihevc_inter_pred_luma_vert() 260 i2_tmp += pi1_coeff[i] * pu1_src[col + (i - 3) * src_strd]; in ihevc_inter_pred_luma_vert() [all …]
|
D | ihevc_weighted_pred.c | 117 WORD32 row, col; in ihevc_weighted_pred_uni() local 122 for(col = 0; col < wd; col++) in ihevc_weighted_pred_uni() 124 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0; in ihevc_weighted_pred_uni() 128 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_uni() 202 WORD32 row, col; in ihevc_weighted_pred_chroma_uni() local 207 for(col = 0; col < 2 * wd; col += 2) in ihevc_weighted_pred_chroma_uni() 209 i4_tmp = (pi2_src[col] + lvl_shift) * wgt0_cb; in ihevc_weighted_pred_chroma_uni() 213 pu1_dst[col] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_chroma_uni() 215 i4_tmp = (pi2_src[col + 1] + lvl_shift) * wgt0_cr; in ihevc_weighted_pred_chroma_uni() 219 pu1_dst[col + 1] = CLIP_U8(i4_tmp); in ihevc_weighted_pred_chroma_uni() [all …]
|
D | ihevc_chroma_intra_pred_filters.c | 475 WORD32 row, col; in ihevc_intra_pred_chroma_planar() local 499 for(col = 0; col < (2 * nt); col += 2) in ihevc_intra_pred_chroma_planar() 501 pu1_dst[row * dst_strd + col] = ((nt - 1 - col / 2) in ihevc_intra_pred_chroma_planar() 503 + (col / 2 + 1) * pu1_ref[2 * (three_nt + 1)] in ihevc_intra_pred_chroma_planar() 504 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col] in ihevc_intra_pred_chroma_planar() 507 pu1_dst[row * dst_strd + col + 1] = ((nt - 1 - col / 2) in ihevc_intra_pred_chroma_planar() 509 + (col / 2 + 1) * pu1_ref[2 * (three_nt + 1) + 1] in ihevc_intra_pred_chroma_planar() 510 + (nt - 1 - row) * pu1_ref[2 * (two_nt + 1) + col + 1] in ihevc_intra_pred_chroma_planar() 566 WORD32 row, col; in ihevc_intra_pred_chroma_dc() local 611 for(col = 0; col < (2 * nt); col += 2) in ihevc_intra_pred_chroma_dc() [all …]
|
D | ihevc_intra_pred_filters.c | 780 WORD32 row, col; in ihevc_intra_pred_luma_planar() local 807 for(col = 0; col < nt; col++) in ihevc_intra_pred_luma_planar() 809 pu1_dst[row * dst_strd + col] = ((nt - 1 - col) in ihevc_intra_pred_luma_planar() 811 + (col + 1) * pu1_ref[three_nt + 1] in ihevc_intra_pred_luma_planar() 812 + (nt - 1 - row) * pu1_ref[two_nt + 1 + col] in ihevc_intra_pred_luma_planar() 868 WORD32 row, col; in ihevc_intra_pred_luma_dc() local 910 for(col = 0; col < nt; col++) in ihevc_intra_pred_luma_dc() 911 pu1_dst[(row * dst_strd) + col] = dc_val; in ihevc_intra_pred_luma_dc() 919 for(col = 1; col < nt; col++) in ihevc_intra_pred_luma_dc() 920 pu1_dst[col] = (pu1_ref[two_nt + 1 + col] + three_dc_val + 2) >> 2; in ihevc_intra_pred_luma_dc() [all …]
|
/external/libavc/common/ |
D | ih264_inter_pred_filters.c | 119 WORD32 row, col; in ih264_inter_pred_luma_copy() local 124 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_copy() 126 pu1_dst[col] = pu1_src[col]; in ih264_inter_pred_luma_copy() 177 WORD32 row, col; in ih264_interleave_copy() local 182 for(col = 0; col < wd; col+=2) in ih264_interleave_copy() 184 pu1_dst[col] = pu1_src[col]; in ih264_interleave_copy() 236 WORD32 row, col; in ih264_inter_pred_luma_horz() local 243 for(col = 0; col < wd; col++) in ih264_inter_pred_luma_horz() 247 (pu1_src[col - 2] + pu1_src[col + 3]) in ih264_inter_pred_luma_horz() 249 (pu1_src[col - 1] + pu1_src[col + 2]) in ih264_inter_pred_luma_horz() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | LUDecompositionImpl.java | 101 for (int col = 0; col < m; col++) { in LUDecompositionImpl() 106 for (int row = 0; row < col; row++) { in LUDecompositionImpl() 108 sum = luRow[col]; in LUDecompositionImpl() 110 sum -= luRow[i] * lu[i][col]; in LUDecompositionImpl() 112 luRow[col] = sum; in LUDecompositionImpl() 116 int max = col; // permutation row in LUDecompositionImpl() 118 for (int row = col; row < m; row++) { in LUDecompositionImpl() 120 sum = luRow[col]; in LUDecompositionImpl() 121 for (int i = 0; i < col; i++) { in LUDecompositionImpl() 122 sum -= luRow[i] * lu[i][col]; in LUDecompositionImpl() [all …]
|
D | FieldLUDecompositionImpl.java | 95 for (int col = 0; col < m; col++) { in FieldLUDecompositionImpl() 100 for (int row = 0; row < col; row++) { in FieldLUDecompositionImpl() 102 sum = luRow[col]; in FieldLUDecompositionImpl() 104 sum = sum.subtract(luRow[i].multiply(lu[i][col])); in FieldLUDecompositionImpl() 106 luRow[col] = sum; in FieldLUDecompositionImpl() 110 int nonZero = col; // permutation row in FieldLUDecompositionImpl() 111 for (int row = col; row < m; row++) { in FieldLUDecompositionImpl() 113 sum = luRow[col]; in FieldLUDecompositionImpl() 114 for (int i = 0; i < col; i++) { in FieldLUDecompositionImpl() 115 sum = sum.subtract(luRow[i].multiply(lu[i][col])); in FieldLUDecompositionImpl() [all …]
|
D | BigMatrixImpl.java | 286 for (int col = 0; col < columnCount; col++) { in add() 287 outDataRow[col] = dataRow[col].add(m.getEntry(row, col)); in add() 313 for (int col = 0; col < columnCount; col++) { in add() 314 outDataRow[col] = dataRow[col].add(mRow[col]); in add() 341 for (int col = 0; col < columnCount; col++) { in subtract() 342 outDataRow[col] = dataRow[col].subtract(getEntry(row, col)); in subtract() 368 for (int col = 0; col < columnCount; col++) { in subtract() 369 outDataRow[col] = dataRow[col].subtract(mRow[col]); in subtract() 388 for (int col = 0; col < columnCount; col++) { in scalarAdd() 389 outDataRow[col] = dataRow[col].add(d); in scalarAdd() [all …]
|
/external/pdfium/fxbarcode/datamatrix/ |
D | BC_DefaultPlacement.cpp | 48 bool CBC_DefaultPlacement::getBit(int32_t col, int32_t row) { in getBit() argument 49 return m_bits[row * m_numcols + col] == 1; in getBit() 51 void CBC_DefaultPlacement::setBit(int32_t col, int32_t row, bool bit) { in setBit() argument 52 m_bits[row * m_numcols + col] = bit ? (uint8_t)1 : (uint8_t)0; in setBit() 54 bool CBC_DefaultPlacement::hasBit(int32_t col, int32_t row) { in hasBit() argument 55 return m_bits[row * m_numcols + col] != 2; in hasBit() 60 int32_t col = 0; in place() local 62 if ((row == m_numrows) && (col == 0)) { in place() 65 if ((row == m_numrows - 2) && (col == 0) && ((m_numcols % 4) != 0)) { in place() 68 if ((row == m_numrows - 2) && (col == 0) && (m_numcols % 8 == 4)) { in place() [all …]
|
/external/deqp/framework/common/ |
D | tcuMatrix.hpp | 68 inline const T& operator() (int row, int col) const { return m_data[col][row]; } in operator ()() 69 inline T& operator() (int row, int col) { return m_data[col][row]; } in operator ()() argument 321 for (int col = 0; col < Cols; col++) in Matrix() local 322 (*this)(row, col) = (row == col) ? T(1) : T(0); in Matrix() 330 for (int col = 0; col < Cols; col++) in Matrix() local 331 (*this)(row, col) = (row == col) ? src : T(0); in Matrix() 339 for (int col = 0; col < Cols; col++) in Matrix() local 340 (*this)(row, col) = src[row*Cols + col]; in Matrix() 349 for (int col = 0; col < Cols; col++) in Matrix() local 350 (*this)(row, col) = (row == col) ? src.m_data[row] : T(0); in Matrix() [all …]
|
/external/apache-harmony/support/src/test/java/tests/support/ |
D | Support_CollectionTest.java | 28 Collection<Integer> col; // must contain the Integers 0 to 99 field in Support_CollectionTest 36 col = c; in Support_CollectionTest() 41 new Support_UnmodifiableCollectionTest("", col).runTest(); in runTest() 50 assertTrue("CollectionTest - a) add did not work", col.add(new Integer( in runTest() 52 assertTrue("CollectionTest - b) add did not work", col in runTest() 56 assertTrue("CollectionTest - a) remove did not work", col in runTest() 58 assertTrue("CollectionTest - b) remove did not work", !col in runTest() 62 assertTrue("CollectionTest - a) addAll failed", col in runTest() 64 assertTrue("CollectionTest - b) addAll failed", col in runTest() 68 assertTrue("CollectionTest - a) containsAll failed", col in runTest() [all …]
|
/external/libvpx/libvpx/vpx_dsp/ |
D | deblock.c | 48 int col; in vpx_post_proc_down_and_across_mb_row_c() local 60 for (col = 0; col < cols; col++) { in vpx_post_proc_down_and_across_mb_row_c() 61 unsigned char p_above2 = p_src[col - 2 * src_pitch]; in vpx_post_proc_down_and_across_mb_row_c() 62 unsigned char p_above1 = p_src[col - src_pitch]; in vpx_post_proc_down_and_across_mb_row_c() 63 unsigned char p_below1 = p_src[col + src_pitch]; in vpx_post_proc_down_and_across_mb_row_c() 64 unsigned char p_below2 = p_src[col + 2 * src_pitch]; in vpx_post_proc_down_and_across_mb_row_c() 66 v = p_src[col]; in vpx_post_proc_down_and_across_mb_row_c() 68 if ((abs(v - p_above2) < flimits[col]) && in vpx_post_proc_down_and_across_mb_row_c() 69 (abs(v - p_above1) < flimits[col]) && in vpx_post_proc_down_and_across_mb_row_c() 70 (abs(v - p_below1) < flimits[col]) && in vpx_post_proc_down_and_across_mb_row_c() [all …]
|
/external/libjpeg-turbo/java/ |
D | TJUnitTest.java | 152 int index, row, col, halfway = 16; in initBuf() local 157 for (col = 0; col < w; col++) { in initBuf() 159 index = pitch * (h - row - 1) + col; in initBuf() 161 index = pitch * row + col; in initBuf() 162 if (((row / 8) + (col / 8)) % 2 == 0) in initBuf() 173 for (col = 0; col < w; col++) { in initBuf() 175 index = (h - row - 1) * w + col; in initBuf() 177 index = row * w + col; in initBuf() 178 if (((row / 8) + (col / 8)) % 2 == 0) { in initBuf() 192 for (col = 0; col < w; col++) { in initBuf() [all …]
|
/external/pdfium/core/fxge/dib/ |
D | cfx_scanlinecompositor.cpp | 182 int GetAlpha(uint8_t src_alpha, const uint8_t* clip_scan, int col) { in GetAlpha() argument 183 return clip_scan ? clip_scan[col] * src_alpha / 255 : src_alpha; in GetAlpha() 192 for (int col = 0; col < pixel_count; ++col) { in CompositeRow_AlphaToMask() local 193 int src_alpha = GetAlpha(*src_scan, clip_scan, col); in CompositeRow_AlphaToMask() 242 for (int col = 0; col < pixel_count; ++col) { in CompositeRow_Argb2Graya() local 247 int src_alpha = GetAlpha(*alpha_scan, clip_scan, col); in CompositeRow_Argb2Graya() 257 uint8_t src_alpha = GetAlpha(*alpha_scan, clip_scan, col); in CompositeRow_Argb2Graya() 289 for (int col = 0; col < pixel_count; ++col) { in CompositeRow_Argb2Gray() local 292 int src_alpha = GetAlpha(*alpha_scan, clip_scan, col); in CompositeRow_Argb2Gray() 309 for (int col = 0; col < pixel_count; ++col) { in CompositeRow_Rgb2Gray() local [all …]
|
/external/libavc/encoder/ |
D | ih264e_half_pel.c | 187 WORD32 row, col; in ih264e_sixtap_filter_2dvh_vert() local 194 for (col = -2; col < wd + 3; col++) in ih264e_sixtap_filter_2dvh_vert() 196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert() 197 … ih264_g_six_tap[1] * (pu1_src[col - 1 * src_strd] + pu1_src[col + 2 * src_strd]) + in ih264e_sixtap_filter_2dvh_vert() 198 ih264_g_six_tap[2] * (pu1_src[col] + pu1_src[col + 1 * src_strd]); in ih264e_sixtap_filter_2dvh_vert() 200 pi4_pred_temp[col] = tmp; in ih264e_sixtap_filter_2dvh_vert() 209 for (col = 0; col < wd; col++) in ih264e_sixtap_filter_2dvh_vert() 211 tmp = (pi4_pred[col - 2] + pi4_pred[col + 3]) + in ih264e_sixtap_filter_2dvh_vert() 212 ih264_g_six_tap[1] * (pi4_pred[col - 1] + pi4_pred[col + 2]) + in ih264e_sixtap_filter_2dvh_vert() 213 ih264_g_six_tap[2] * (pi4_pred[col] + pi4_pred[col + 1]); in ih264e_sixtap_filter_2dvh_vert() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_tile.c | 44 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 52 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 61 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 75 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 83 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 85 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 92 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 106 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 114 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | radeon_tile.c | 44 unsigned col; /* current source column */ in micro_tile_8_x_4_8bit() local 52 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_4_8bit() 54 uint8_t *src2 = (uint8_t *)src + src_pitch * row + col; in micro_tile_8_x_4_8bit() 61 unsigned columns = MIN2(tile_width, width - col); in micro_tile_8_x_4_8bit() 75 unsigned col; /* current source column */ in micro_tile_4_x_4_16bit() local 83 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_4_x_4_16bit() 85 uint16_t *src2 = (uint16_t *)src + src_pitch * row + col; in micro_tile_4_x_4_16bit() 92 unsigned columns = MIN2(tile_width, width - col); in micro_tile_4_x_4_16bit() 106 unsigned col; /* current source column */ in micro_tile_8_x_2_16bit() local 114 for (col = 0; col < width; col += tile_width, ++k) in micro_tile_8_x_2_16bit() [all …]
|
/external/libxaac/decoder/ |
D | ixheaacd_mps_smoothing.c | 38 int ps = 0, pb, row, col; in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() local 53 for (col = 0; col < MAX_M_INPUT; col++) { in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 54 self->m1_param_re[ps][pb][row][col] = in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 55 (ixheaacd_mult32(delta, self->m1_param_re[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 57 self->m1_param_re_prev[pb][row][col])) in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 59 self->m1_param_im[ps][pb][row][col] = in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 60 (ixheaacd_mult32(delta, self->m1_param_im[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 62 self->m1_param_im_prev[pb][row][col])) in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 64 self->m2_decor_re[ps][pb][row][col] = in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() 65 (ixheaacd_mult32(delta, self->m2_decor_re[ps][pb][row][col]) + in ixheaacd_mps_pre_matrix_mix_matrix_smoothing() [all …]
|
/external/javaparser/javaparser-testing/src/test/resources/com/github/javaparser/bulk_test_results/ |
D | openjdk_src_repo_test_results.txt | 2 (line 68,col 16) '_' is a reserved keyword. 14 (line 25,col 12) Parse error. Found "}", expected "(" 17 (line 25,col 12) '_' is a reserved keyword. 20 (line 33,col 1) 'abstract' is not allowed here. 29 (line 25,col 28) Parse error. Found "1" <INTEGER_LITERAL>, expected "}" 32 (line 17,col 5) 'private' is not allowed here. 33 (line 18,col 5) 'private' is not allowed here. 34 (line 20,col 5) 'protected' is not allowed here. 35 (line 21,col 5) 'protected' is not allowed here. 36 (line 23,col 5) 'static' is not allowed here. [all …]
|
/external/dng_sdk/source/ |
D | dng_reference.cpp | 99 for (uint32 col = 0; col < cols; col++) in RefSetArea8() local 140 for (uint32 col = 0; col < cols; col++) in RefSetArea16() local 181 for (uint32 col = 0; col < cols; col++) in RefSetArea32() local 226 for (uint32 col = 0; col < cols; col++) in RefCopyArea8() local 275 for (uint32 col = 0; col < cols; col++) in RefCopyArea16() local 324 for (uint32 col = 0; col < cols; col++) in RefCopyArea32() local 373 for (uint32 col = 0; col < cols; col++) in RefCopyArea8_16() local 422 for (uint32 col = 0; col < cols; col++) in RefCopyArea8_S16() local 473 for (uint32 col = 0; col < cols; col++) in RefCopyArea8_32() local 522 for (uint32 col = 0; col < cols; col++) in RefCopyArea16_S16() local [all …]
|
/external/libvpx/libvpx/vp8/encoder/ |
D | mcomp.c | 35 clamp((mv->as_mv.col - ref->as_mv.col) >> 1, 0, MVvals); in vp8_mv_bit_cost() 46 clamp((mv->as_mv.col - ref->as_mv.col) >> 1, 0, MVvals); in mv_err_cost() 60 mvsadcost[1][(mv->as_mv.col - ref->as_mv.col)]) * in mvsad_err_cost() 74 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 81 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 87 x->ss[search_site_count].mv.col = 0; in vp8_init_dsmotion_compensation() 93 x->ss[search_site_count].mv.col = -Len; in vp8_init_dsmotion_compensation() 99 x->ss[search_site_count].mv.col = Len; in vp8_init_dsmotion_compensation() 118 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() 125 x->ss[search_site_count].mv.col = 0; in vp8_init3smotion_compensation() [all …]
|
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
D | JDBCResultSet.java | 229 int col = findColumn(columnName); 230 return getString(col); 256 int col = findColumn(columnName); 257 return getInt(col); 266 int col = findColumn(columnName); 267 return getBoolean(col); 300 int col = findColumn(columnName); 301 return getShort(col); 337 int col = findColumn(columnName); 338 return getTime(col); [all …]
|
/external/gemmlowp/internal/ |
D | output_sse.h | 185 int col) { 187 StoreInt32x4(dst->data(row, col), src.buf.reg[0]); 189 *dst->data(row + 0, col) = GetLane<0>(src.buf.reg[0]); 190 *dst->data(row + 1, col) = GetLane<1>(src.buf.reg[0]); 191 *dst->data(row + 2, col) = GetLane<2>(src.buf.reg[0]); 192 *dst->data(row + 3, col) = GetLane<3>(src.buf.reg[0]); 200 int col) { 202 StoreInt32x4(dst->data(row, col), src.buf.reg[0]); 203 StoreInt32x4(dst->data(row + 4, col), src.buf.reg[1]); 205 *dst->data(row + 0, col) = GetLane<0>(src.buf.reg[0]); [all …]
|
/external/libvpx/libvpx/vpx_dsp/ppc/ |
D | deblock_vsx.c | 37 static INLINE void vert_ctx(uint8x16_t ctx[4], int col, uint8_t *src, in vert_ctx() argument 39 ctx[0] = vec_vsx_ld(col - 2 * stride, src); in vert_ctx() 40 ctx[1] = vec_vsx_ld(col - stride, src); in vert_ctx() 41 ctx[2] = vec_vsx_ld(col + stride, src); in vert_ctx() 42 ctx[3] = vec_vsx_ld(col + 2 * stride, src); in vert_ctx() 72 int row, col; in vpx_post_proc_down_and_across_mb_row_vsx() local 76 for (col = 0; col < cols - 8; col += 16) { in vpx_post_proc_down_and_across_mb_row_vsx() 77 const uint8x16_t filter = vec_vsx_ld(col, f); in vpx_post_proc_down_and_across_mb_row_vsx() 78 v = vec_vsx_ld(col, src_ptr); in vpx_post_proc_down_and_across_mb_row_vsx() 79 vert_ctx(ctx, col, src_ptr, src_pixels_per_line); in vpx_post_proc_down_and_across_mb_row_vsx() [all …]
|