mirror of
https://github.com/citra-emu/citra.git
synced 2025-01-07 07:30:06 +00:00
f6b543886c
Co-authored-by: LC <712067+lioncash@users.noreply.github.com>
25 lines
625 B
C++
25 lines
625 B
C++
// This file is under the public domain.
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <type_traits>
|
|
|
|
namespace Common {
|
|
|
|
template <typename T>
|
|
[[nodiscard]] constexpr T AlignUp(T value, std::size_t size) {
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
auto mod{value % size};
|
|
value -= mod;
|
|
return static_cast<T>(mod == T{0} ? value : value + size);
|
|
}
|
|
|
|
template <typename T>
|
|
[[nodiscard]] constexpr T AlignDown(T value, std::size_t size) {
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
|
return static_cast<T>(value - value % size);
|
|
}
|
|
|
|
} // namespace Common
|