Lines Matching refs:pu1_dst
87 UWORD8 *pu1_dst, in ih264_default_weighted_pred_luma() argument
102 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++) in ih264_default_weighted_pred_luma()
103 *pu1_dst = (*pu1_src1 + *pu1_src2 + 1) >> 1; in ih264_default_weighted_pred_luma()
107 pu1_dst += dst_strd; in ih264_default_weighted_pred_luma()
142 UWORD8 *pu1_dst, in ih264_default_weighted_pred_chroma() argument
159 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++) in ih264_default_weighted_pred_chroma()
160 *pu1_dst = (*pu1_src1 + *pu1_src2 + 1) >> 1; in ih264_default_weighted_pred_chroma()
164 pu1_dst += dst_strd; in ih264_default_weighted_pred_chroma()
200 UWORD8 *pu1_dst, in ih264_weighted_pred_luma() argument
222 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++) in ih264_weighted_pred_luma()
223 *pu1_dst = CLIP_U8((wt * (*pu1_src) + i_ofst) >> log_wd); in ih264_weighted_pred_luma()
226 pu1_dst += dst_strd; in ih264_weighted_pred_luma()
233 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++) in ih264_weighted_pred_luma()
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst); in ih264_weighted_pred_luma()
237 pu1_dst += dst_strd; in ih264_weighted_pred_luma()
274 UWORD8 *pu1_dst, in ih264_weighted_pred_chroma() argument
303 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++) in ih264_weighted_pred_chroma()
305 *pu1_dst = CLIP_U8((wt_u * (*pu1_src) + ofst_u) >> log_wd); in ih264_weighted_pred_chroma()
307 pu1_dst++; in ih264_weighted_pred_chroma()
308 *pu1_dst = CLIP_U8((wt_v * (*pu1_src) + ofst_v) >> log_wd); in ih264_weighted_pred_chroma()
311 pu1_dst += dst_strd; in ih264_weighted_pred_chroma()
318 for(j = 0; j < wd; j++, pu1_src++, pu1_dst++) in ih264_weighted_pred_chroma()
320 *pu1_dst = CLIP_U8(wt_u * (*pu1_src) + ofst_u); in ih264_weighted_pred_chroma()
322 pu1_dst++; in ih264_weighted_pred_chroma()
323 *pu1_dst = CLIP_U8(wt_v * (*pu1_src) + ofst_v); in ih264_weighted_pred_chroma()
326 pu1_dst += dst_strd; in ih264_weighted_pred_chroma()
368 UWORD8 *pu1_dst, in ih264_weighted_bi_pred_luma() argument
398 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++) in ih264_weighted_bi_pred_luma()
399 *pu1_dst = CLIP_U8((wt1 * (*pu1_src1) + wt2 * (*pu1_src2) + ofst) >> shft); in ih264_weighted_bi_pred_luma()
403 pu1_dst += dst_strd; in ih264_weighted_bi_pred_luma()
444 UWORD8 *pu1_dst, in ih264_weighted_bi_pred_chroma() argument
483 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++) in ih264_weighted_bi_pred_chroma()
485 *pu1_dst = CLIP_U8((wt1_u * (*pu1_src1) + wt2_u * (*pu1_src2) + ofst_u) >> shft); in ih264_weighted_bi_pred_chroma()
488 pu1_dst++; in ih264_weighted_bi_pred_chroma()
489 *pu1_dst = CLIP_U8((wt1_v * (*pu1_src1) + wt2_v * (*pu1_src2) + ofst_v) >> shft); in ih264_weighted_bi_pred_chroma()
493 pu1_dst += dst_strd; in ih264_weighted_bi_pred_chroma()