Home
last modified time | relevance | path

Searched refs:setbit (Results 1 – 3 of 3) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
Dbcmutils.h656 #ifndef setbit
661 extern void setbit(void *array, uint bit);
666 #define setbit(a, i) (((uint8 *)a)[(i) / NBBY] |= 1 << ((i) % NBBY)) macro
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Dbcmutils.c2264 #ifndef setbit /* As in the header file */
2268 setbit(void *array, uint bit) in setbit() function
/hardware/broadcom/wlan/bcmdhd/halutil/
Dhalutil.cpp143 #define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) macro