pineapple-src/src/common/div_ceil.h

27 lines
805 B
C
Raw Normal View History

2020-12-28 15:15:37 +00:00
// Copyright 2020 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <cstddef>
#include <type_traits>
namespace Common {
/// Ceiled integer division.
template <typename N, typename D>
2021-09-24 22:06:04 +00:00
requires std::is_integral_v<N> && std::is_unsigned_v<D>
[[nodiscard]] constexpr N DivCeil(N number, D divisor) {
2021-01-12 09:22:33 +00:00
return static_cast<N>((static_cast<D>(number) + divisor - 1) / divisor);
2020-12-28 15:15:37 +00:00
}
/// Ceiled integer division with logarithmic divisor in base 2
template <typename N, typename D>
2021-09-24 22:06:04 +00:00
requires std::is_integral_v<N> && std::is_unsigned_v<D>
[[nodiscard]] constexpr N DivCeilLog2(N value, D alignment_log2) {
2021-01-12 09:22:33 +00:00
return static_cast<N>((static_cast<D>(value) + (D(1) << alignment_log2) - 1) >> alignment_log2);
2020-12-28 15:15:37 +00:00
}
} // namespace Common