Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/gcc/
Dsbitmap.h45 #define SET_BIT(BITMAP, BITNO) \ argument
46 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] \
47 |= (SBITMAP_ELT_TYPE) 1 << (BITNO) % SBITMAP_ELT_BITS)
50 #define TEST_BIT(BITMAP, BITNO) \ argument
51 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
54 #define RESET_BIT(BITMAP, BITNO) \ argument
55 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] \
56 &= ~((SBITMAP_ELT_TYPE) 1 << (BITNO) % SBITMAP_ELT_BITS))