Searched refs:setbit (Results 1 – 3 of 3) sorted by relevance
656 #ifndef setbit661 extern void setbit(void *array, uint bit);666 #define setbit(a, i) (((uint8 *)a)[(i) / NBBY] |= 1 << ((i) % NBBY)) macro
2264 #ifndef setbit /* As in the header file */2268 setbit(void *array, uint bit) in setbit() function
143 #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) macro