Lines Matching refs:ofst
205 WORD32 ofst, in ih264_weighted_pred_luma() argument
212 ofst = (WORD8)(ofst & 0xff); in ih264_weighted_pred_luma()
219 WORD32 i_ofst = (1 << (log_wd - 1)) + (ofst << log_wd); in ih264_weighted_pred_luma()
234 *pu1_dst = CLIP_U8(wt * (*pu1_src) + ofst); in ih264_weighted_pred_luma()
279 WORD32 ofst, in ih264_weighted_pred_chroma() argument
290 ofst_u = (WORD8)(ofst & 0xff); in ih264_weighted_pred_chroma()
291 ofst_v = (WORD8)(ofst >> 8); in ih264_weighted_pred_chroma()
381 WORD32 shft, ofst; in ih264_weighted_bi_pred_luma() local
387 ofst = (ofst1 + ofst2 + 1) >> 1; in ih264_weighted_bi_pred_luma()
390 ofst = (1 << log_wd) + (ofst << shft); 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()