diff options
Diffstat (limited to 'src/pulsecore/core-util.c')
-rw-r--r-- | src/pulsecore/core-util.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c index 0005e220..2c5a32e9 100644 --- a/src/pulsecore/core-util.c +++ b/src/pulsecore/core-util.c @@ -1208,21 +1208,3 @@ char *pa_truncate_utf8(char *c, size_t l) { return c; } - -int pa_is_power_of_two(unsigned n) { - return !(n & (n - 1)); -} - -unsigned pa_make_power_of_two(unsigned n) { - unsigned j = n; - - if (pa_is_power_of_two(n)) - return n; - - while (j) { - j = j >> 1; - n = n | j; - } - - return n + 1; -} |