• Home
  • Raw
  • Download

Lines Matching refs:col

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()
308 WORD32 row, col; in ihevc_weighted_pred_bi() local
313 for(col = 0; col < wd; col++) in ihevc_weighted_pred_bi()
315 i4_tmp = (pi2_src1[col] + lvl_shift1) * wgt0; in ihevc_weighted_pred_bi()
316 i4_tmp += (pi2_src2[col] + lvl_shift2) * wgt1; in ihevc_weighted_pred_bi()
319 pu1_dst[col] = CLIP_U8(i4_tmp >> shift); in ihevc_weighted_pred_bi()
413 WORD32 row, col; in ihevc_weighted_pred_chroma_bi() local
418 for(col = 0; col < 2 * wd; col += 2) in ihevc_weighted_pred_chroma_bi()
420 i4_tmp = (pi2_src1[col] + lvl_shift1) * wgt0_cb; in ihevc_weighted_pred_chroma_bi()
421 i4_tmp += (pi2_src2[col] + lvl_shift2) * wgt1_cb; in ihevc_weighted_pred_chroma_bi()
424 pu1_dst[col] = CLIP_U8(i4_tmp >> shift); in ihevc_weighted_pred_chroma_bi()
426 i4_tmp = (pi2_src1[col + 1] + lvl_shift1) * wgt0_cr; in ihevc_weighted_pred_chroma_bi()
427 i4_tmp += (pi2_src2[col + 1] + lvl_shift2) * wgt1_cr; in ihevc_weighted_pred_chroma_bi()
430 pu1_dst[col + 1] = CLIP_U8(i4_tmp >> shift); in ihevc_weighted_pred_chroma_bi()
500 WORD32 row, col; in ihevc_weighted_pred_bi_default() local
507 for(col = 0; col < wd; col++) in ihevc_weighted_pred_bi_default()
509 i4_tmp = pi2_src1[col] + lvl_shift1; in ihevc_weighted_pred_bi_default()
510 i4_tmp += pi2_src2[col] + lvl_shift2; in ihevc_weighted_pred_bi_default()
513 pu1_dst[col] = CLIP_U8(i4_tmp >> shift); in ihevc_weighted_pred_bi_default()
583 WORD32 row, col; in ihevc_weighted_pred_chroma_bi_default() local
590 for(col = 0; col < 2 * wd; col++) in ihevc_weighted_pred_chroma_bi_default()
592 i4_tmp = pi2_src1[col] + lvl_shift1; in ihevc_weighted_pred_chroma_bi_default()
593 i4_tmp += pi2_src2[col] + lvl_shift2; in ihevc_weighted_pred_chroma_bi_default()
596 pu1_dst[col] = CLIP_U8(i4_tmp >> shift); in ihevc_weighted_pred_chroma_bi_default()