Home | History | Annotate | Download | only in lib

Lines Matching full:bitno

185 /* Set bit BITNO in bitset DST.  */
186 #define BITSET_SET_(DST, BITNO) (DST)->b.vtable->set (DST, BITNO)
188 /* Reset bit BITNO in bitset DST. */
189 #define BITSET_RESET_(DST, BITNO) (DST)->b.vtable->reset (DST, BITNO)
191 /* Toggle bit BITNO in bitset DST. */
192 #define BITSET_TOGGLE_(DST, BITNO) (DST)->b.vtable->toggle (DST, BITNO)
194 /* Return non-zero if bit BITNO in bitset SRC is set. */
195 #define BITSET_TEST_(SRC, BITNO) (SRC)->b.vtable->test (SRC, BITNO)