blob: e0b490c141ea666dfde974482f21c625e9996dd7 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_MEMORY_ALIGNED_MEMORY_H_
#define CHROMEOS_MEMORY_ALIGNED_MEMORY_H_
#include <type_traits>
#include "base/memory/aligned_memory.h"
#include "base/memory/page_size.h"
namespace chromeos {
namespace memory {
template <typename Type>
inline bool IsPageAligned(Type val) {
static_assert(std::is_integral<Type>::value || std::is_pointer<Type>::value,
"Integral or pointer type required");
return base::IsAligned(val, base::GetPageSize());
}
} // namespace memory
} // namespace chromeos
#endif // CHROMEOS_MEMORY_ALIGNED_MEMORY_H_