Searched refs:ofst_u (Results 1 – 4 of 4) sorted by relevance
/external/libavc/common/ |
D | ih264_weighted_pred.c | 285 WORD32 ofst_u, ofst_v; in ih264_weighted_pred_chroma() local 290 ofst_u = (WORD8)(ofst & 0xff); in ih264_weighted_pred_chroma() 298 ofst_u = (1 << (log_wd - 1)) + (ofst_u << log_wd); in ih264_weighted_pred_chroma() 305 *pu1_dst = CLIP_U8((wt_u * (*pu1_src) + ofst_u) >> log_wd); in ih264_weighted_pred_chroma() 320 *pu1_dst = CLIP_U8(wt_u * (*pu1_src) + ofst_u); in ih264_weighted_pred_chroma() 459 WORD32 ofst_u, ofst_v; in ih264_weighted_bi_pred_chroma() local 470 ofst_u = (ofst1_u + ofst2_u + 1) >> 1; in ih264_weighted_bi_pred_chroma() 478 ofst_u = (1 << log_wd) + (ofst_u << shft); 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()
|
/external/libavc/common/x86/ |
D | ih264_weighted_pred_sse42.c | 622 WORD32 ofst_u, ofst_v; in ih264_weighted_pred_chroma_sse42() local 625 ofst_u = (WORD8)(ofst & 0xff); in ih264_weighted_pred_chroma_sse42() 628 ofst = (ofst_u & 0xffff) | (ofst_v << 16); in ih264_weighted_pred_chroma_sse42() 1124 WORD32 ofst1_u, ofst2_u, ofst_u; in ih264_weighted_bi_pred_chroma_sse42() local 1139 ofst_u = (ofst1_u + ofst2_u + 1) >> 1; in ih264_weighted_bi_pred_chroma_sse42() 1141 ofst_val = (ofst_u & 0xffff) | (ofst_v << 16); in ih264_weighted_bi_pred_chroma_sse42()
|
/external/libavc/common/arm/ |
D | ih264_weighted_bi_pred_a9q.s | 480 asr r9, r9, #1 @r9 = ofst_u = (ofst1_u + ofst2_u + 1) >> 1 483 pkhbt r9, r9, r7, lsl #16 @r9 = {ofst_u(16-bit), ofst_v(16-bit)} 484 vdup.32 q3, r9 @Q3 = {ofst_u(16-bit), ofst_v(16-bit)}
|
D | ih264_weighted_pred_a9q.s | 349 ldr r6, [sp, #36] @Load ofst = {ofst_u (8-bit), ofst_v (8-bit)} 356 vdup.16 d4, r6 @D4 = {ofst_u (8-bit), ofst_v (8-bit)}
|