summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2022-01-10 19:44:19 -0500
committerGravatar Morph2022-01-11 16:01:12 -0500
commitd92b5fc435b5444314fc1ce407a908ba0222f318 (patch)
tree09d1be56d9cb49ec7bbe0ff3663c5f0b9fd8ca84 /src
parentMerge pull request #7683 from liushuyu/fmt-8.1 (diff)
downloadyuzu-d92b5fc435b5444314fc1ce407a908ba0222f318.tar.gz
yuzu-d92b5fc435b5444314fc1ce407a908ba0222f318.tar.xz
yuzu-d92b5fc435b5444314fc1ce407a908ba0222f318.zip
common: bit_util: Add IsPow2 helper function
Makes use of std::has_single_bit() to check whether the value is a power of 2.
Diffstat (limited to 'src')
-rw-r--r--src/common/bit_util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/bit_util.h b/src/common/bit_util.h
index eef8c1c5a..f50d3308a 100644
--- a/src/common/bit_util.h
+++ b/src/common/bit_util.h
@@ -46,6 +46,12 @@ template <typename T>
46} 46}
47 47
48template <typename T> 48template <typename T>
49requires std::is_unsigned_v<T>
50[[nodiscard]] constexpr bool IsPow2(T value) {
51 return std::has_single_bit(value);
52}
53
54template <typename T>
49requires std::is_integral_v<T> 55requires std::is_integral_v<T>
50[[nodiscard]] T NextPow2(T value) { 56[[nodiscard]] T NextPow2(T value) {
51 return static_cast<T>(1ULL << ((8U * sizeof(T)) - std::countl_zero(value - 1U))); 57 return static_cast<T>(1ULL << ((8U * sizeof(T)) - std::countl_zero(value - 1U)));