Searched refs:RESET_BIT (Results 1 – 4 of 4) sorted by relevance
103 #define RESET_BIT(x, pos) (x) = (x) & ~(1 << pos); macro107 #define INSERT_BIT(x, pos, bit) { RESET_BIT(x, pos); (x) = (x) | (bit << pos); }
174 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()
2414 RESET_BIT(u2_sig_coeff_map,idx); in ih264d_unpack_coeff4x4_dc_4x4blk()
125 #define RESET_BIT(x, bit) (x = x & ~((WORD32)1 << bit)) macro