#ifndef SkAlign_DEFINED
#define SkAlign_DEFINED
#include "include/private/base/SkAssert.h"
#include <cstddef>
template <typename T> static constexpr T SkAlign2(T x) { … }
template <typename T> static constexpr T SkAlign4(T x) { … }
template <typename T> static constexpr T SkAlign8(T x) { … }
template <typename T> static constexpr T SkAlign16(T x) { … }
template <typename T> static constexpr bool SkIsAlign2(T x) { … }
template <typename T> static constexpr bool SkIsAlign4(T x) { … }
template <typename T> static constexpr bool SkIsAlign8(T x) { … }
template <typename T> static constexpr bool SkIsAlign16(T x) { … }
template <typename T> static constexpr T SkAlignPtr(T x) { … }
template <typename T> static constexpr bool SkIsAlignPtr(T x) { … }
static inline constexpr size_t SkAlignTo(size_t x, size_t alignment) { … }
#endif