/* * Copyright 2022 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkAlign_DEFINED #define SkAlign_DEFINED #include "include/private/base/SkAssert.h" #include template static constexpr T SkAlign2(T x) { return (x + 1) >> 1 << 1; } template static constexpr T SkAlign4(T x) { return (x + 3) >> 2 << 2; } template static constexpr T SkAlign8(T x) { return (x + 7) >> 3 << 3; } template static constexpr T SkAlign16(T x) { return (x + 15) >> 4 << 4; } template static constexpr bool SkIsAlign2(T x) { return 0 == (x & 1); } template static constexpr bool SkIsAlign4(T x) { return 0 == (x & 3); } template static constexpr bool SkIsAlign8(T x) { return 0 == (x & 7); } template static constexpr bool SkIsAlign16(T x) { return 0 == (x & 15); } template static constexpr T SkAlignPtr(T x) { static_assert(sizeof(void*) == 4 || sizeof(void*) == 8); return sizeof(void*) == 8 ? SkAlign8(x) : SkAlign4(x); } template static constexpr bool SkIsAlignPtr(T x) { static_assert(sizeof(void*) == 4 || sizeof(void*) == 8); return sizeof(void*) == 8 ? SkIsAlign8(x) : SkIsAlign4(x); } /** * align up to a power of 2 */ static inline constexpr size_t SkAlignTo(size_t x, size_t alignment) { // The same as alignment && SkIsPow2(value), w/o a dependency cycle. SkASSERT(alignment && (alignment & (alignment - 1)) == 0); return (x + alignment - 1) & ~(alignment - 1); } #endif