Searched defs:SETBIT (Results 1 – 5 of 5) sorted by relevance
4 #define SETBIT(set,bit) do { int i = bit; set[i/(8*sizeof(set[0]))] |= (1 << (i%(8*sizeof(set)))); … macro
56 #define SETBIT(a,i) ((a) |= (1 << i)) macro
72 #define SETBIT(a, i) ((a) |= (1 << (i))) macro
164 #define SETBIT(offs, mask) \ macro
367 #define SETBIT(a,b) a[(b)/8] = (uint8_t)(a[(b)/8] | (1 << ((b)&7))) macro