Searched defs:SETBIT (Results 1 – 6 of 6) sorted by relevance
71 #define SETBIT(tib,boff) \ macro
293 # define SETBIT(t, b) (t[(b) >> 3] |= (ONE << ((b) & 7))) macro
150 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) macro
139 #define SETBIT(A, N) ((A)[(N)/BITS_PER_MAP] |= (1<<((N)%BITS_PER_MAP))) macro
72 #define SETBIT(r, n) ((r)[(n)/BITS_PER_WORD]|=((unsigned)1<<((n)&(BITS_PER_WORD-1)))) macro
55057 #define SETBIT(V,I) V[I>>3] |= (1<<(I&7)) macro