Searched refs:nbr_id_from_bl (Results 1 – 5 of 5) sorted by relevance
/external/libhevc/common/arm/ |
D | ihevc_intra_ref_substitution_a9q.c | 119 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_chroma_ref_substitution_a9q() local 267 … nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */ in ihevc_intra_pred_chroma_ref_substitution_a9q() 268 if(nbr_id_from_bl == 32) in ihevc_intra_pred_chroma_ref_substitution_a9q() 269 nbr_id_from_bl = 16; in ihevc_intra_pred_chroma_ref_substitution_a9q() 270 if(nbr_id_from_bl == 16) in ihevc_intra_pred_chroma_ref_substitution_a9q() 275 nbr_id_from_bl++; in ihevc_intra_pred_chroma_ref_substitution_a9q() 276 …nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; … in ihevc_intra_pred_chroma_ref_substitution_a9q() 281 if(nbr_id_from_bl) in ihevc_intra_pred_chroma_ref_substitution_a9q() 284 pu1_ref_u = pu1_dst[2 * nbr_id_from_bl]; in ihevc_intra_pred_chroma_ref_substitution_a9q() 285 pu1_ref_v = pu1_dst[(2 * nbr_id_from_bl) + 1]; in ihevc_intra_pred_chroma_ref_substitution_a9q() [all …]
|
D | ihevc_intra_pred_filters_neon_intr.c | 134 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution_neonintr() local 305 … nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution_neonintr() 307 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution_neonintr() 308 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution_neonintr() 310 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution_neonintr() 315 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution_neonintr() 316 …nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution_neonintr() 320 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution_neonintr() 323 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution_neonintr() 324 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution_neonintr() [all …]
|
/external/libhevc/common/ |
D | ihevc_chroma_intra_pred_filters.c | 150 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_chroma_ref_substitution() local 298 … nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */ in ihevc_intra_pred_chroma_ref_substitution() 299 if(nbr_id_from_bl == 32) in ihevc_intra_pred_chroma_ref_substitution() 300 nbr_id_from_bl = 16; in ihevc_intra_pred_chroma_ref_substitution() 301 if(nbr_id_from_bl == 16) in ihevc_intra_pred_chroma_ref_substitution() 306 nbr_id_from_bl++; in ihevc_intra_pred_chroma_ref_substitution() 307 …nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; … in ihevc_intra_pred_chroma_ref_substitution() 312 if(nbr_id_from_bl) in ihevc_intra_pred_chroma_ref_substitution() 315 pu1_ref_u = pu1_dst[2 * nbr_id_from_bl]; in ihevc_intra_pred_chroma_ref_substitution() 316 pu1_ref_v = pu1_dst[(2 * nbr_id_from_bl) + 1]; in ihevc_intra_pred_chroma_ref_substitution() [all …]
|
D | ihevc_intra_pred_filters.c | 220 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution() local 408 … nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution() 410 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution() 411 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution() 413 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution() 418 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution() 419 …nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution() 424 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution() 427 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution() 428 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution() [all …]
|
/external/libhevc/common/x86/ |
D | ihevc_intra_pred_filters_ssse3_intr.c | 152 WORD32 idx, nbr_id_from_bl, frwd_nbr_flag; in ihevc_intra_pred_luma_ref_substitution_ssse3() local 253 … nbr_id_from_bl = look_up_trailing_zeros(nbr_flags_temp & 0XF) * 8; /* for below left and left */ in ihevc_intra_pred_luma_ref_substitution_ssse3() 255 if(nbr_id_from_bl == 64) in ihevc_intra_pred_luma_ref_substitution_ssse3() 256 nbr_id_from_bl = 32; in ihevc_intra_pred_luma_ref_substitution_ssse3() 258 if(nbr_id_from_bl == 32) in ihevc_intra_pred_luma_ref_substitution_ssse3() 263 nbr_id_from_bl++; in ihevc_intra_pred_luma_ref_substitution_ssse3() 264 …nbr_id_from_bl += look_up_trailing_zeros((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; … in ihevc_intra_pred_luma_ref_substitution_ssse3() 269 if(nbr_id_from_bl) in ihevc_intra_pred_luma_ref_substitution_ssse3() 272 pu1_ref = pu1_dst[nbr_id_from_bl]; in ihevc_intra_pred_luma_ref_substitution_ssse3() 273 for(i = (nbr_id_from_bl - 1); i >= 0; i--) in ihevc_intra_pred_luma_ref_substitution_ssse3() [all …]
|