summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/config.h b/src/config.h
index b2c58be..47aa529 100644
--- a/src/config.h
+++ b/src/config.h
@@ -141,10 +141,17 @@
#define countof(array) (sizeof(array) / sizeof(0[array]))
/**
+ * Round down to a multiple of an alignment.
+ */
+static inline size_t align_floor(size_t align, size_t size) {
+ return size & ~(align - 1);
+}
+
+/**
* Round up to a multiple of an alignment.
*/
static inline size_t align_ceil(size_t align, size_t size) {
- return (size + align - 1) & ~(align - 1);
+ return align_floor(align, size + align - 1);
}
/**
@@ -171,8 +178,8 @@ static inline size_t flex_sizeof_impl(size_t align, size_t min, size_t offset, s
size_t mask = align - 1;
ret += mask;
overflow |= ret < mask;
- ret &= ~mask;
ret |= -overflow;
+ ret &= ~mask;
// Make sure flex_sizeof(type, member, 0) >= sizeof(type), even if the
// type has more padding than necessary for alignment