src/core/bitmath_func.hpp
changeset 8113 31b7784db761
parent 8055 49cf1521d591
child 8132 f4c7a8e4f25a
--- a/src/core/bitmath_func.hpp	Fri Dec 21 08:34:53 2007 +0000
+++ b/src/core/bitmath_func.hpp	Fri Dec 21 19:21:21 2007 +0000
@@ -276,4 +276,19 @@
 	return (T)(x >> n | x << (sizeof(x) * 8 - n));
 }
 
+/**
+ * Do an operation for each set set bit in a value.
+ *
+ * This macros is used to do an operation for each set
+ * bit in a variable. The first variable can be reused
+ * in the operation due to it's the bit position counter.
+ * The second variable will be cleared during the usage
+ *
+ * @param i The position counter
+ * @param b The value which we check for set bits
+ */
+#define FOR_EACH_SET_BIT(i, b)      \
+	for (i = 0; b != 0; i++, b >>= 1) \
+		if (b & 1)
+
 #endif /* BITMATH_FUNC_HPP */