Home
last modified time | relevance | path

Searched refs:RESET_BIT (Results 1 – 4 of 4) sorted by relevance

/external/libavc/common/
Dih264_macros.h103 #define RESET_BIT(x, pos) (x) = (x) & ~(1 << pos); macro
107 #define INSERT_BIT(x, pos, bit) { RESET_BIT(x, pos); (x) = (x) | (bit << pos); }
/external/libavc/decoder/
Dih264d_process_intra_mb.c174 RESET_BIT(u2_sig_coeff_map,idx); in ih264d_unpack_coeff4x4_4x4blk()
664 RESET_BIT(u4_sig_coeff_map,idx); in ih264d_unpack_luma_coeff8x8_mb()
677 RESET_BIT(u4_sig_coeff_map,idx); in ih264d_unpack_luma_coeff8x8_mb()
Dih264d_utils.c2414 RESET_BIT(u2_sig_coeff_map,idx); in ih264d_unpack_coeff4x4_dc_4x4blk()
/external/libhevc/encoder/
Dihevce_recur_bracketing.c125 #define RESET_BIT(x, bit) (x = x & ~((WORD32)1 << bit)) macro