X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=utils%2Fpow2.c;fp=utils%2Fpow2.c;h=9cce3d89a68c8ec05a896163927b6b0808efb138;hb=4361b69d3178d7fc98d0388f9a223af6c2651aba;hp=0000000000000000000000000000000000000000;hpb=d6b0217f2417bd19187f0ebc389d6c5c2233b11c;p=xscreensaver diff --git a/utils/pow2.c b/utils/pow2.c new file mode 100644 index 00000000..9cce3d89 --- /dev/null +++ b/utils/pow2.c @@ -0,0 +1,51 @@ +/* pow2, Copyright (c) 2016 Dave Odell + * + * Permission to use, copy, modify, distribute, and sell this software and its + * documentation for any purpose is hereby granted without fee, provided that + * the above copyright notice appear in all copies and that both that + * copyright notice and this permission notice appear in supporting + * documentation. No representations are made about the suitability of this + * software for any purpose. It is provided "as is" without express or + * implied warranty. + */ + +#include "pow2.h" + +#include + +int +i_log2 (size_t x) +{ + /* -1 works best for to_pow2. */ + if (!x) + return -1; + + /* GCC 3.4 also has this. */ +# if defined __GNUC__ && __GNUC__ >= 4 || defined __clang__ + return sizeof(long) * CHAR_BIT - __builtin_clzl(x) - 1; +# else + { + unsigned bits = sizeof(x) * CHAR_BIT; + size_t mask = (size_t)-1; + unsigned result = bits - 1; + + while (bits) { + if (!(x & mask)) { + result -= bits; + x <<= bits; + } + + bits >>= 1; + mask <<= bits; + } + + return result; + } +# endif +} + +size_t +to_pow2 (size_t x) +{ + return !x ? 1 : 1 << (i_log2(x - 1) + 1); +}