Home
last modified time | relevance | path

Searched refs:nbr_flags (Results 1 – 8 of 8) sorted by relevance

/external/libhevc/common/arm/
Dihevc_intra_ref_substitution_a9q.c109 WORD32 nbr_flags, in ihevc_intra_pred_chroma_ref_substitution_a9q() argument
126 if(nbr_flags == 0) in ihevc_intra_pred_chroma_ref_substitution_a9q()
141 tp_left = (nbr_flags & 0x10000); in ihevc_intra_pred_chroma_ref_substitution_a9q()
142 tp_right = (nbr_flags & 0x0f000); in ihevc_intra_pred_chroma_ref_substitution_a9q()
143 top = (nbr_flags & 0x00f00); in ihevc_intra_pred_chroma_ref_substitution_a9q()
144 left = (nbr_flags & 0x000f0); in ihevc_intra_pred_chroma_ref_substitution_a9q()
145 bot_left = (nbr_flags & 0x0000f); in ihevc_intra_pred_chroma_ref_substitution_a9q()
191 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_chroma_ref_substitution_a9q()
192 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_chroma_ref_substitution_a9q()
193 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_chroma_ref_substitution_a9q()
[all …]
Dihevc_intra_pred_filters_neon_intr.c122 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution_neonintr() argument
144 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution_neonintr()
174 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution_neonintr()
175 bot_left = nbr_flags & 0x1; in ihevc_intra_pred_luma_ref_substitution_neonintr()
176 left = (nbr_flags & 0x10) >> 4; in ihevc_intra_pred_luma_ref_substitution_neonintr()
177 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution_neonintr()
178 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution_neonintr()
297 nbr_flags_temp = (nbr_flags & 0x3) + ((nbr_flags & 0x30) >> 2) in ihevc_intra_pred_luma_ref_substitution_neonintr()
298 + ((nbr_flags & 0x300) >> 4) in ihevc_intra_pred_luma_ref_substitution_neonintr()
299 + ((nbr_flags & 0x3000) >> 6) in ihevc_intra_pred_luma_ref_substitution_neonintr()
[all …]
/external/libhevc/common/
Dihevc_intra_pred_filters.c132 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_subst_all_avlble() argument
139 UNUSED(nbr_flags); in ihevc_intra_pred_luma_ref_subst_all_avlble()
147 ASSERT((nbr_flags == 0x11188) || (nbr_flags == 0x133CC) || (nbr_flags == 0x1FFFF)); in ihevc_intra_pred_luma_ref_subst_all_avlble()
206 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution() argument
232 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution()
244 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution()
245 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_luma_ref_substitution()
246 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_luma_ref_substitution()
247 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution()
248 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution()
[all …]
Dihevc_chroma_intra_pred_filters.c140 WORD32 nbr_flags, in ihevc_intra_pred_chroma_ref_substitution() argument
157 if(nbr_flags == 0) in ihevc_intra_pred_chroma_ref_substitution()
172 tp_left = (nbr_flags & 0x10000); in ihevc_intra_pred_chroma_ref_substitution()
173 tp_right = (nbr_flags & 0x0f000); in ihevc_intra_pred_chroma_ref_substitution()
174 top = (nbr_flags & 0x00f00); in ihevc_intra_pred_chroma_ref_substitution()
175 left = (nbr_flags & 0x000f0); in ihevc_intra_pred_chroma_ref_substitution()
176 bot_left = (nbr_flags & 0x0000f); in ihevc_intra_pred_chroma_ref_substitution()
222 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_chroma_ref_substitution()
223 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_chroma_ref_substitution()
224 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_chroma_ref_substitution()
[all …]
Dihevc_intra_pred.h142 WORD32 nbr_flags,
152 WORD32 nbr_flags,
266 WORD32 nbr_flags,
Dihevc_chroma_intra_pred.h127 WORD32 nbr_flags,
226 WORD32 nbr_flags,
/external/libhevc/decoder/
Dihevcd_iquant_itrans_recon_ctb.c360 WORD32 nbr_flags; in ihevcd_get_intra_nbr_flag() local
522nbr_flags = (top_left << 16) | (top_right << 12) | (top << 8) | (gau4_ihevcd_4_bit_reverse[left] <… in ihevcd_get_intra_nbr_flag()
526 return nbr_flags; in ihevcd_get_intra_nbr_flag()
/external/libhevc/common/x86/
Dihevc_intra_pred_filters_ssse3_intr.c138 WORD32 nbr_flags, in ihevc_intra_pred_luma_ref_substitution_ssse3() argument
164 if(nbr_flags == 0) in ihevc_intra_pred_luma_ref_substitution_ssse3()
183 tp_left = (nbr_flags & 0x10000) >> 16; in ihevc_intra_pred_luma_ref_substitution_ssse3()
184 bot_left = (nbr_flags & 0x8) >> 3; in ihevc_intra_pred_luma_ref_substitution_ssse3()
185 left = (nbr_flags & 0x80) >> 7; in ihevc_intra_pred_luma_ref_substitution_ssse3()
186 top = (nbr_flags & 0x100) >> 8; in ihevc_intra_pred_luma_ref_substitution_ssse3()
187 tp_right = (nbr_flags & 0x1000) >> 12; in ihevc_intra_pred_luma_ref_substitution_ssse3()
245 nbr_flags_temp = ((nbr_flags & 0xC) >> 2) + ((nbr_flags & 0xC0) >> 4) in ihevc_intra_pred_luma_ref_substitution_ssse3()
246 + ((nbr_flags & 0x300) >> 4) in ihevc_intra_pred_luma_ref_substitution_ssse3()
247 + ((nbr_flags & 0x3000) >> 6) in ihevc_intra_pred_luma_ref_substitution_ssse3()
[all …]