OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:look_up_trailing_zeros
(Results
1 - 6
of
6
) sorted by null
/external/libhevc/common/arm/
ihevc_intra_ref_substitution_a9q.c
267
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */
276
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; 8 pels per nbr bit */
334
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 4; /* for bottom left and left */
344
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 4;
618
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 8; /* for below left and left */
629
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; 8 pels per nbr bit */
761
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 8; /* for below left and left */
771
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 8;
ihevc_intra_pred_filters_neon_intr.c
305
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 8; /* for below left and left */
316
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; 8 pels per nbr bit */
368
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 8; /* for below left and left */
378
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 8;
[
all
...]
/external/libhevc/common/
ihevc_chroma_intra_pred_filters.c
298
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 4; /* for bottom left and left */
307
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 4; /* top and top right; 8 pels per nbr bit */
365
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 4; /* for bottom left and left */
375
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 4;
[
all
...]
ihevc_intra_pred_filters.c
420
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 8; /* for below left and left */
431
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; 8 pels per nbr bit */
564
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 8; /* for below left and left */
574
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 8;
[
all
...]
ihevc_intra_pred.h
43
#define
look_up_trailing_zeros
(x) (0 == (x) ? 8 : CTZ(x))
macro
/external/libhevc/common/x86/
ihevc_intra_pred_filters_ssse3_intr.c
253
nbr_id_from_bl =
look_up_trailing_zeros
(nbr_flags_temp & 0XF) * 8; /* for below left and left */
264
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags_temp >> 4) & 0xF) * 8; /* top and top right; 8 pels per nbr bit */
319
nbr_id_from_bl =
look_up_trailing_zeros
((nbr_flags & 0XFF)) * 8; /* for below left and left */
329
nbr_id_from_bl +=
look_up_trailing_zeros
((nbr_flags >> 8) & 0xFF) * 8;
[
all
...]
Completed in 178 milliseconds