]> wimlib.net Git - wimlib/blobdiff - include/wimlib/bitops.h
Introduce ilog2_ceil()
[wimlib] / include / wimlib / bitops.h
index ed8b16cdd2410b1d5649081bc3758938d27dd074..d964374d63e0def7112e83ea5532d7d1d7f91832 100644 (file)
@@ -100,14 +100,20 @@ ffsw(machine_word_t v)
                return ffs64(v);
 }
 
-/* Round up to nearest power of 2  */
+/* Return the log base 2 of 'n', rounded up to the nearest integer. */
+static inline unsigned
+ilog2_ceil(size_t n)
+{
+        if (n <= 1)
+                return 0;
+        return 1 + flsw(n - 1);
+}
 
+/* Round 'n' up to the nearest power of 2 */
 static inline size_t
 roundup_pow_of_2(size_t n)
 {
-       if (n <= 1)
-               return 1;
-       return (size_t)1 << (1 + flsw(n - 1));
+       return (size_t)1 << ilog2_ceil(n);
 }
 
 #endif /* _WIMLIB_BITOPS_H */