mirror of
https://github.com/azahar-emu/mcl
synced 2025-11-06 23:20:08 +01:00
memory: Add memory literals
This commit is contained in:
parent
7f357b571f
commit
f4fae271c2
36
include/mcl/memory/literals.hpp
Normal file
36
include/mcl/memory/literals.hpp
Normal file
@ -0,0 +1,36 @@
|
||||
// This file is part of the mcl project.
|
||||
// Copyright (c) 2022 merryhime
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "mcl/stdint.hpp"
|
||||
|
||||
namespace mcl::memory::literals {
|
||||
|
||||
constexpr u64 operator""_KiB(unsigned long long int x)
|
||||
{
|
||||
return 1024ULL * x;
|
||||
}
|
||||
|
||||
constexpr u64 operator""_MiB(unsigned long long int x)
|
||||
{
|
||||
return 1024_KiB * x;
|
||||
}
|
||||
|
||||
constexpr u64 operator""_GiB(unsigned long long int x)
|
||||
{
|
||||
return 1024_MiB * x;
|
||||
}
|
||||
|
||||
constexpr u64 operator""_TiB(unsigned long long int x)
|
||||
{
|
||||
return 1024_GiB * x;
|
||||
}
|
||||
|
||||
constexpr u64 operator""_PiB(unsigned long long int x)
|
||||
{
|
||||
return 1024_TiB * x;
|
||||
}
|
||||
|
||||
} // namespace mcl::memory::literals
|
||||
Loading…
x
Reference in New Issue
Block a user