2016-03-11 15:15:36 +00:00
|
|
|
// This file is under the public domain.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
template <typename T>
|
2020-08-31 19:06:16 +00:00
|
|
|
[[nodiscard]] constexpr T AlignUp(T value, std::size_t size) {
|
2018-08-07 17:31:57 +00:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2022-05-12 04:23:23 +00:00
|
|
|
auto mod{static_cast<T>(value % size)};
|
2020-07-07 21:39:23 +00:00
|
|
|
value -= mod;
|
|
|
|
return static_cast<T>(mod == T{0} ? value : value + size);
|
2016-03-11 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2020-08-31 19:06:16 +00:00
|
|
|
[[nodiscard]] constexpr T AlignDown(T value, std::size_t size) {
|
2018-08-07 17:31:57 +00:00
|
|
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
2016-03-11 15:15:36 +00:00
|
|
|
return static_cast<T>(value - value % size);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|