citra/src/common/alignment.h

25 lines
641 B
C++
Raw Normal View History

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>
[[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{static_cast<T>(value % size)};
value -= mod;
return static_cast<T>(mod == T{0} ? value : value + size);
2016-03-11 15:15:36 +00:00
}
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.");
2016-03-11 15:15:36 +00:00
return static_cast<T>(value - value % size);
}
} // namespace Common