summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Align.h
blob: 994e50561709ecf19873d92c821e594a5de0900a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: CC0-1.0

#pragma once

#include <cstddef>
#include <type_traits>

namespace Common
{

template <typename T>
constexpr T AlignDown(T value, size_t size)
{
  static_assert(std::is_unsigned<T>(), "T must be an unsigned value.");
  return static_cast<T>(value - value % size);
}

template <typename T>
constexpr T AlignUp(T value, size_t size)
{
  static_assert(std::is_unsigned<T>(), "T must be an unsigned value.");
  return AlignDown<T>(static_cast<T>(value + (size - 1)), size);
}

}  // namespace Common