Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / common / align.hpp
index c957824af72d265800a1bd2ab0cd5e3179d3c051..fab15af8c77619c5b68a79e9c7d7c70b69911637 100644 (file)
  * Align value to the next multiple of align. Returns val if it already is a
  * multiple of align. Align must be a power of two.
  */
-#define __lttng_align_ceil_mask(v, mask)       (((v) + (mask)) & ~(mask))
+#define __lttng_align_ceil_mask(v, mask) (((v) + (mask)) & ~(mask))
 
-#define lttng_align_ceil(v, align) \
-       __lttng_align_ceil_mask(v, (__typeof__(v)) (align) - 1)
+#define lttng_align_ceil(v, align) __lttng_align_ceil_mask(v, (__typeof__(v)) (align) -1)
 
 /*
  * Align value to the previous multiple of align. Returns val if it already is a
  * multiple of align. Align must be a power of two.
  */
-#define __lttng_align_floor_mask(v, mask)      ((v) & ~(mask))
+#define __lttng_align_floor_mask(v, mask) ((v) & ~(mask))
 
-#define lttng_align_floor(v, align) \
-       __lttng_align_floor_mask(v, (__typeof__(v)) (align) - 1)
+#define lttng_align_floor(v, align) __lttng_align_floor_mask(v, (__typeof__(v)) (align) -1)
 
 /**
  * lttng_offset_align - Calculate the offset needed to align an object on its natural
  * Returns the offset that must be added to align towards higher
  * addresses.
  */
-#define lttng_offset_align(align_drift, alignment)                                    \
-       ({                                                                     \
-               LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0                    \
-                                  || ((alignment) & ((alignment) - 1)));      \
-               (((alignment) - (align_drift)) & ((alignment) - 1));           \
+#define lttng_offset_align(align_drift, alignment)                                                \
+       ({                                                                                        \
+               LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0 || ((alignment) & ((alignment) -1))); \
+               (((alignment) - (align_drift)) & ((alignment) -1));                               \
        })
 
 /**
  *
  * Returns the offset that must be substracted to align towards lower addresses.
  */
-#define lttng_offset_align_floor(align_drift, alignment)                              \
-       ({                                                                     \
-               LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0                    \
-                                  || ((alignment) & ((alignment) - 1)));      \
-               (((align_drift) - (alignment)) & ((alignment) - 1));           \
+#define lttng_offset_align_floor(align_drift, alignment)                                          \
+       ({                                                                                        \
+               LTTNG_BUILD_RUNTIME_BUG_ON((alignment) == 0 || ((alignment) & ((alignment) -1))); \
+               (((align_drift) - (alignment)) & ((alignment) -1));                               \
        })
 
 #endif /* _LTTNG_ALIGN_H */
This page took 0.023205 seconds and 4 git commands to generate.