summaryrefslogtreecommitdiff
path: root/src/common/alignment.h
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-03-12 20:12:15 -0800
committerYuri Kunde Schlesner <yuriks@yuriks.net>2016-03-12 20:12:15 -0800
commitf62935d2787fdc43ed0f102bf967ae6f25fb6298 (patch)
tree22939821529744351ef1fa1eb11b87c146774b48 /src/common/alignment.h
parent7f8c99899bce49475908c3974433a51044f36e19 (diff)
parenta66c186e81ba88b8ce5a9ef041e3839454dd70ab (diff)
Merge pull request #1496 from JayFoxRox/align-attribs
Align attribute components
Diffstat (limited to 'src/common/alignment.h')
-rw-r--r--src/common/alignment.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h
new file mode 100644
index 000000000..b77da4a92
--- /dev/null
+++ b/src/common/alignment.h
@@ -0,0 +1,22 @@
+// This file is under the public domain.
+
+#pragma once
+
+#include <cstddef>
+#include <type_traits>
+
+namespace Common {
+
+template <typename T>
+constexpr T AlignUp(T value, size_t size) {
+ static_assert(std::is_unsigned<T>::value, "T must be an unsigned value.");
+ return static_cast<T>(value + (size - value % size) % size);
+}
+
+template <typename T>
+constexpr T AlignDown(T value, size_t size) {
+ static_assert(std::is_unsigned<T>::value, "T must be an unsigned value.");
+ return static_cast<T>(value - value % size);
+}
+
+} // namespace Common