summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/util.h b/util.h
index 4db637a..0a87c0c 100644
--- a/util.h
+++ b/util.h
@@ -35,3 +35,12 @@ static double get_time_double(void) {
clock_gettime(CLOCK_MONOTONIC, &ts);
return (double)ts.tv_sec + (double)ts.tv_nsec * 1e-9;
}
+
+static uint8_t popcount64(uint64_t x) {
+ uint8_t cnt = 0;
+ while (x) {
+ x &= x - 1;
+ cnt++;
+ }
+ return cnt;
+}