/external/libavc/common/ |
D | ih264_luma_intra_pred_filters.c | 135 UWORD8 *pu1_top = NULL; /* Pointer to start of top predictors */ in ih264_intra_pred_luma_4x4_mode_vert() local 138 pu1_top = pu1_src + BLK_SIZE + 1; in ih264_intra_pred_luma_4x4_mode_vert() 140 memcpy(pu1_dst, pu1_top, 4); in ih264_intra_pred_luma_4x4_mode_vert() 141 memcpy(pu1_dst + dst_strd, pu1_top, 4); in ih264_intra_pred_luma_4x4_mode_vert() 142 memcpy(pu1_dst + 2 * dst_strd, pu1_top, 4); in ih264_intra_pred_luma_4x4_mode_vert() 143 memcpy(pu1_dst + 3 * dst_strd, pu1_top, 4); in ih264_intra_pred_luma_4x4_mode_vert() 238 UWORD8 *pu1_top = NULL; /* Pointer to start of top predictors */ in ih264_intra_pred_luma_4x4_mode_dc() local 244 pu1_top = pu1_src + BLK_SIZE + 1; in ih264_intra_pred_luma_4x4_mode_dc() 256 val += *pu1_top + *(pu1_top + 1) + *(pu1_top + 2) + *(pu1_top + 3) in ih264_intra_pred_luma_4x4_mode_dc() 308 UWORD8 *pu1_top = NULL; /* Pointer to start of top predictors */ in ih264_intra_pred_luma_4x4_mode_diag_dl() local [all …]
|
D | ih264_chroma_intra_pred_filters.c | 119 UWORD8 *pu1_top = NULL; /* Pointer to start of top predictors */ in ih264_intra_pred_chroma_8x8_mode_dc() local 136 pu1_top = pu1_src + 2 * BLK8x8SIZE + 2; in ih264_intra_pred_chroma_8x8_mode_dc() 178 val_u_t1 += *pu1_top + *(pu1_top + 2) + *(pu1_top + 4) in ih264_intra_pred_chroma_8x8_mode_dc() 179 + *(pu1_top + 6) + 2; in ih264_intra_pred_chroma_8x8_mode_dc() 180 val_u_t2 += *(pu1_top + 8) + *(pu1_top + 10) + *(pu1_top + 12) in ih264_intra_pred_chroma_8x8_mode_dc() 181 + *(pu1_top + 14) + 2; in ih264_intra_pred_chroma_8x8_mode_dc() 182 val_v_t1 += *(pu1_top + 1) + *(pu1_top + 3) + *(pu1_top + 5) in ih264_intra_pred_chroma_8x8_mode_dc() 183 + *(pu1_top + 7) + 2; in ih264_intra_pred_chroma_8x8_mode_dc() 184 val_v_t2 += *(pu1_top + 9) + *(pu1_top + 11) + *(pu1_top + 13) in ih264_intra_pred_chroma_8x8_mode_dc() 185 + *(pu1_top + 15) + 2; in ih264_intra_pred_chroma_8x8_mode_dc() [all …]
|
D | ih264_intra_pred_filters.h | 66 UWORD8 *pu1_top,
|
/external/libmpeg2/common/ |
D | ideint.c | 210 UWORD8 *pu1_top, *pu1_bot, *pu1_dst; in ideint_process() local 271 pu1_top = ps_cur_fld->apu1_buf[i]; in ideint_process() 276 pu1_top = ps_nxt_fld->apu1_buf[i]; in ideint_process() 279 pu1_top += (cur_strd * row << 2); in ideint_process() 332 vrnc = ps_ctxt->pf_variance_8x4(pu1_top, cur_strd, BLK_WD, in ideint_process() 347 cac = ps_ctxt->pf_cac_8x8(pu1_top, pu1_bot, cur_strd, cur_strd); in ideint_process() 362 ideint_weave_blk(pu1_top, pu1_bot, pu1_dst, dst_strd, in ideint_process() 369 ideint_weave_blk(pu1_top, pu1_bot, pu1_dst, dst_strd, in ideint_process() 382 ideint_pad_blk(pu1_top, pu1_bot, au1_pad, cur_strd, row, in ideint_process() 395 ps_ctxt->pf_spatial_filter(pu1_top, pu1_dst + dst_strd, in ideint_process() [all …]
|
D | ideint_cac.c | 100 static WORD32 cac_4x8(UWORD8 *pu1_top, in cac_4x8() argument 149 pu1_tmp_top = pu1_top; in cac_4x8() 224 pu1_top_0 = pu1_top; in cac_4x8() 300 pu1_top += SUB_BLK_WD; in cac_4x8() 337 WORD32 ideint_cac_8x8(UWORD8 *pu1_top, in ideint_cac_8x8() argument 351 ca |= cac_4x8(pu1_top, pu1_bot, top_strd, bot_strd); in ideint_cac_8x8() 353 pu1_top += SUB_BLK_WD; in ideint_cac_8x8()
|
D | ideint_utils.c | 185 WORD32 ideint_weave_blk(UWORD8 *pu1_top, in ideint_weave_blk() argument 197 memcpy(pu1_dst, pu1_top, wd); in ideint_weave_blk() 199 pu1_top += src_strd; in ideint_weave_blk() 248 void ideint_pad_blk(UWORD8 *pu1_top, in ideint_pad_blk() argument 268 pu1_src_top = pu1_top - cur_strd - 2; in ideint_pad_blk()
|
D | ideint_utils.h | 49 void ideint_pad_blk(UWORD8 *pu1_top, 60 WORD32 ideint_weave_blk(UWORD8 *pu1_top,
|
D | ideint_structs.h | 47 typedef WORD32 ideint_cac_8x8_t(UWORD8 *pu1_top,
|
/external/libavc/common/x86/ |
D | ih264_luma_intra_pred_filters_ssse3.c | 123 UWORD8 *pu1_top; in ih264_intra_pred_luma_4x4_mode_vert_ssse3() local 130 pu1_top = pu1_src + BLK_SIZE + 1; in ih264_intra_pred_luma_4x4_mode_vert_ssse3() 132 i4_top = *((WORD32 *)pu1_top); in ih264_intra_pred_luma_4x4_mode_vert_ssse3() 250 UWORD8 *pu1_top = NULL; /* Pointer to start of top predictors */ in ih264_intra_pred_luma_4x4_mode_dc_ssse3() local 257 pu1_top = pu1_src + BLK_SIZE + 1; in ih264_intra_pred_luma_4x4_mode_dc_ssse3() 269 val += *pu1_top + *(pu1_top + 1) + *(pu1_top + 2) + *(pu1_top + 3) in ih264_intra_pred_luma_4x4_mode_dc_ssse3() 325 UWORD8 *pu1_top; in ih264_intra_pred_luma_4x4_mode_diag_dl_ssse3() local 336 pu1_top = pu1_src + BLK_SIZE + 1; in ih264_intra_pred_luma_4x4_mode_diag_dl_ssse3() 338 top_16x8b = _mm_loadl_epi64((__m128i *)pu1_top); in ih264_intra_pred_luma_4x4_mode_diag_dl_ssse3() 684 UWORD8 *pu1_top; in ih264_intra_pred_luma_4x4_mode_vert_l_ssse3() local [all …]
|
D | ih264_chroma_intra_pred_filters_ssse3.c | 178 UWORD8 *pu1_top; /* Pointer to start of top predictors */ in ih264_intra_pred_chroma_8x8_mode_vert_ssse3() local 186 pu1_top = pu1_src + 2 * BLK8x8SIZE + 2; in ih264_intra_pred_chroma_8x8_mode_vert_ssse3() 188 top_16x8b = _mm_loadu_si128((__m128i *)pu1_top); in ih264_intra_pred_chroma_8x8_mode_vert_ssse3() 246 UWORD8 *pu1_left, *pu1_top; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() local 254 pu1_top = pu1_src + MB_SIZE + 2; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() 271 h_val1_16x8b = _mm_loadl_epi64((__m128i *)(pu1_top + 8)); in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() 272 h_val2_16x8b = _mm_loadl_epi64((__m128i *)(pu1_top - 2)); in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() 294 a_u = (pu1_left[7 * (-2)] + pu1_top[14]) << 4; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3() 295 a_v = (pu1_left[7 * (-2) + 1] + pu1_top[15]) << 4; in ih264_intra_pred_chroma_8x8_mode_plane_ssse3()
|
/external/libhevc/common/arm/ |
D | ihevc_intra_ref_substitution_a9q.c | 100 UWORD8 *pu1_top, in ihevc_intra_pred_chroma_ref_substitution_a9q() 172 ihevc_memcpy_mul_8_a9q(&pu1_dst[(4 * nt) + 2], pu1_top, 2 * nt); in ihevc_intra_pred_chroma_ref_substitution_a9q() 179 ihevc_memcpy_mul_8_a9q(&pu1_dst[(4 * nt) + 2 + 2 * nt], pu1_top + 2 * nt, 2 * nt); in ihevc_intra_pred_chroma_ref_substitution_a9q() 394 UWORD8 *pu1_top, in ihevc_intra_pred_luma_ref_substitution_a9q() 473 ihevc_memcpy_a9q(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_substitution_a9q() 482 ihevc_memcpy_a9q(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_substitution_a9q() 595 ihevc_memcpy_mul_8_a9q(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_substitution_a9q() 604 ihevc_memcpy_mul_8_a9q(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_substitution_a9q() 738 ihevc_memcpy_mul_8_a9q(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_substitution_a9q() 747 ihevc_memcpy_mul_8_a9q(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_substitution_a9q()
|
D | ihevc_intra_pred_filters_neon_intr.c | 110 UWORD8 *pu1_top, in ihevc_intra_pred_luma_ref_substitution_neonintr() 148 UWORD8 *pu1_top_tmp = pu1_top; in ihevc_intra_pred_luma_ref_substitution_neonintr()
|
/external/libhevc/common/ |
D | ihevc_intra_pred_filters.c | 113 UWORD8 *pu1_top, in ihevc_intra_pred_luma_ref_subst_all_avlble() 154 ihevc_memcpy(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_subst_all_avlble() 158 ihevc_memcpy(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_subst_all_avlble() 177 ihevc_memcpy_mul_8(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_subst_all_avlble() 179 ihevc_memcpy_mul_8(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_subst_all_avlble() 187 UWORD8 *pu1_top, in ihevc_intra_pred_luma_ref_substitution() 266 ihevc_memcpy(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_substitution() 275 ihevc_memcpy(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_substitution() 387 ihevc_memcpy_mul_8(&pu1_dst[two_nt + 1], pu1_top, nt); in ihevc_intra_pred_luma_ref_substitution() 396 ihevc_memcpy_mul_8(&pu1_dst[two_nt + 1 + nt], pu1_top + nt, nt); in ihevc_intra_pred_luma_ref_substitution() [all …]
|
D | ihevc_intra_pred.h | 140 UWORD8 *pu1_top, 150 UWORD8 *pu1_top,
|
D | ihevc_chroma_intra_pred_filters.c | 126 UWORD8 *pu1_top, in ihevc_intra_pred_chroma_ref_substitution() 198 ihevc_memcpy_mul_8(&pu1_dst[(4 * nt) + 2], pu1_top, 2 * nt); in ihevc_intra_pred_chroma_ref_substitution() 205 ihevc_memcpy_mul_8(&pu1_dst[(4 * nt) + 2 + 2 * nt], pu1_top + 2 * nt, 2 * nt); in ihevc_intra_pred_chroma_ref_substitution()
|
D | ihevc_chroma_intra_pred.h | 123 UWORD8 *pu1_top,
|
/external/libavc/decoder/ |
D | ih264d_process_intra_mb.c | 1013 UWORD8 *pu1_top, *pu1_left, *pu1_top_left, *pu1_top_right; in ih264d_process_intra_mb() local 1038 pu1_top = puc_top; in ih264d_process_intra_mb() 1210 pu1_top = pu1_luma_rec_buffer - ui_rec_width; in ih264d_process_intra_mb() 1212 pu1_top = puc_top + (u1_sub_blk_x << 2); in ih264d_process_intra_mb() 1216 pu1_top = pu1_luma_rec_buffer - ui_rec_width; in ih264d_process_intra_mb() 1219 pu1_top_right = pu1_top + 4; in ih264d_process_intra_mb() 1221 pu1_top_left = pu1_top - 1; in ih264d_process_intra_mb() 1281 memcpy(au1_ngbr_pels + 4 + 1, pu1_top, 4); in ih264d_process_intra_mb() 1359 UWORD8 *pu1_top, *pu1_left, *pu1_top_left; in ih264d_process_intra_mb() local 1431 pu1_top = puc_top - 8; in ih264d_process_intra_mb() [all …]
|
/external/libmpeg2/common/x86/ |
D | ideint_cac_ssse3.c | 93 WORD32 ideint_cac_8x8_ssse3(UWORD8 *pu1_top, in ideint_cac_8x8_ssse3() argument 117 top[i] = (__m128i)_mm_loadl_epi64((__m128i *) (pu1_top)); in ideint_cac_8x8_ssse3() 118 pu1_top += top_strd; in ideint_cac_8x8_ssse3()
|
/external/libhevc/decoder/ |
D | ihevcd_iquant_itrans_recon_ctb.c | 950 UWORD8 *pu1_top_left, *pu1_top, *pu1_left; in ihevcd_iquant_itrans_recon_ctb() local 975 pu1_top = pu1_pred - pic_strd; in ihevcd_iquant_itrans_recon_ctb() 983 … pu1_top, pu1_left, pred_strd, trans_size, luma_nbr_flags, au1_ref_sub_out, 1); in ihevcd_iquant_itrans_recon_ctb() 987 … pu1_top, pu1_left, pred_strd, trans_size, luma_nbr_flags, au1_ref_sub_out, 1); in ihevcd_iquant_itrans_recon_ctb() 1022 pu1_top = pu1_pred_orig - pic_strd; in ihevcd_iquant_itrans_recon_ctb() 1051 … pu1_top, pu1_left, pic_strd, trans_size, chroma_nbr_flags, au1_ref_sub_out, 1); in ihevcd_iquant_itrans_recon_ctb()
|
/external/libhevc/encoder/ |
D | ihevce_enc_loop_utils.c | 2933 UWORD8 *pu1_top; in ihevce_intra_rdopt_cu_ntu() local 3066 pu1_top = (UWORD8 *)pv_cu_top; in ihevce_intra_rdopt_cu_ntu() 3203 pu1_top, in ihevce_intra_rdopt_cu_ntu() 3832 pu1_top += trans_size; in ihevce_intra_rdopt_cu_ntu() 3833 pu1_top_left = pu1_top - 1; in ihevce_intra_rdopt_cu_ntu() 3866 pu1_top = ((UWORD8 *)ps_recon_datastore->apv_luma_recon_bufs in ihevce_intra_rdopt_cu_ntu() 3881 pu1_top = ((UWORD8 *)ps_recon_datastore->apv_luma_recon_bufs in ihevce_intra_rdopt_cu_ntu() 3884 pu1_top_left = pu1_top - 1; in ihevce_intra_rdopt_cu_ntu() 6232 UWORD8 *pu1_top = pu1_cur_src - i4_src_stride; in ihevce_distortion_based_intra_chroma_mode_selector() local 6233 UWORD8 *pu1_top_left = pu1_top - 2; in ihevce_distortion_based_intra_chroma_mode_selector() [all …]
|
/external/libmpeg2/common/arm/ |
D | ideint_cac_a9.s | 45 @* @param[in] pu1_top
|
/external/libavc/encoder/x86/ |
D | ih264e_intra_modes_eval_ssse3.c | 921 UWORD8 *pu1_top; in ih264e_evaluate_intra_chroma_modes_ssse3() local 923 pu1_top = pu1_ngbr_pels + 2 * BLK8x8SIZE + 2; in ih264e_evaluate_intra_chroma_modes_ssse3() 924 top_16x8b = _mm_loadu_si128((__m128i *)pu1_top); in ih264e_evaluate_intra_chroma_modes_ssse3()
|
/external/libhevc/common/x86/ |
D | ihevc_intra_pred_filters_ssse3_intr.c | 115 UWORD8 *pu1_top, in ihevc_intra_pred_luma_ref_substitution_ssse3() 159 pu1_dst[two_nt + 1 + i] = pu1_top[i]; in ihevc_intra_pred_luma_ref_substitution_ssse3()
|