Searched defs:SET_BIT (Results 1 – 7 of 7) sorted by relevance
14 #define SET_BIT(val, bit) ((val) | (1 << (bit))) macro
116 #define SET_BIT(x, bitpos) ((x) | (1 << (bitpos))) macro
60 #define SET_BIT(bnu, nbit) (((Ipp8u*)(bnu))[(nbit)/8] |= ((1<<((nbit)%8)) &0xFF)) macro
104 #define SET_BIT(x, pos) (x) = (x) | (1 << pos); macro
57 #define SET_BIT(c) re->start_bitmap[(c)/8] |= (1 << ((c)&7)) macro
38 #define SET_BIT(m,b) (m[ (b) / 8 ] |= (1U << ((b) % 8))) macro
15 #define SET_BIT(data, bit) ((data) | (0x1 << (bit))) macro