Searched refs:ofst_v (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 291 ofst_v = (WORD8)(ofst >> 8); in ih264_weighted_pred_chroma() 299 ofst_v = (1 << (log_wd - 1)) + (ofst_v << log_wd); in ih264_weighted_pred_chroma() 308 *pu1_dst = CLIP_U8((wt_v * (*pu1_src) + ofst_v) >> log_wd); in ih264_weighted_pred_chroma() 323 *pu1_dst = CLIP_U8(wt_v * (*pu1_src) + ofst_v); in ih264_weighted_pred_chroma() 459 WORD32 ofst_u, ofst_v; in ih264_weighted_bi_pred_chroma() local 471 ofst_v = (ofst1_v + ofst2_v + 1) >> 1; in ih264_weighted_bi_pred_chroma() 479 ofst_v = (1 << log_wd) + (ofst_v << shft); 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()
|
/external/libavc/common/x86/ |
D | ih264_weighted_pred_sse42.c | 622 WORD32 ofst_u, ofst_v; in ih264_weighted_pred_chroma_sse42() local 626 ofst_v = (WORD8)(ofst >> 8); in ih264_weighted_pred_chroma_sse42() 628 ofst = (ofst_u & 0xffff) | (ofst_v << 16); in ih264_weighted_pred_chroma_sse42() 1125 WORD32 ofst1_v, ofst2_v, ofst_v; in ih264_weighted_bi_pred_chroma_sse42() local 1140 ofst_v = (ofst1_v + ofst2_v + 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 | 481 asr r7, r7, #1 @r7 = ofst_v = (ofst1_v + ofst2_v + 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)}
|