Home | History | Annotate | Download | only in lib

Lines Matching refs:INDEX

285 /* Find next set bit from the given bit index.  */
288 /* Find previous set bit from the given bit index. */
303 /* Loop over all elements of BSET, starting with MIN, setting INDEX
304 to the index of each set bit. For example, the following will print
315 #define BITSET_FOR_EACH(ITER, BSET, INDEX, MIN) \
321 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1); \
326 MIN, setting INDEX to the index of each set bit. For example, the
337 #define BITSET_FOR_EACH_REVERSE(ITER, BSET, INDEX, MIN) \
343 ITER.i < ITER.num && ((INDEX) = ITER.list[ITER.i], 1); \